]> git.mxchange.org Git - friendica-addons.git/commitdiff
Unneeded parameter removed
authorMichael <heluecht@pirati.ca>
Sun, 13 Nov 2022 23:39:48 +0000 (23:39 +0000)
committerMichael <heluecht@pirati.ca>
Sun, 13 Nov 2022 23:39:48 +0000 (23:39 +0000)
advancedcontentfilter/advancedcontentfilter.php

index 8f5585c6c7233ab11fa04597b6f75b72569cc238..f29da0cf8a0c888f32c8b4a0370ddfe3693cc830 100644 (file)
@@ -455,7 +455,7 @@ function advancedcontentfilter_prepare_item_row(array $item_row): array
        $item_row['tags'] = $tags['tags'];
        $item_row['hashtags'] = $tags['hashtags'];
        $item_row['mentions'] = $tags['mentions'];
-       $item_row['attachments'] = Post\Media::splitAttachments($item_row['uri-id'], $item_row['guid'] ?? '');
+       $item_row['attachments'] = Post\Media::splitAttachments($item_row['uri-id']);
 
        return $item_row;
 }