Unneeded parameter removed

pull/1311/head
Michael 2022-11-13 23:39:48 +00:00
parent e800cf20cb
commit fc3222cd2d
1 changed files with 1 additions and 1 deletions

View 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;
}