[twitter] Add missing parameter to converShare #760

Merged
MrPetovan merged 1 commits from bug/5913-fix-twitter-share into develop 2018-10-21 16:42:00 +02:00
1 changed files with 2 additions and 2 deletions

View File

@ -557,8 +557,8 @@ function twitter_post_hook(App $a, array &$b)
// Handling non-native reshares
$b['body'] = Friendica\Content\Text\BBCode::convertShare(
$b['body'],
function (array $attributes, array $author_contact, $content) {
return twitter_convert_share($attributes, $author_contact, $content);
function (array $attributes, array $author_contact, $content, $is_quote_share) {
return twitter_convert_share($attributes, $author_contact, $content, $is_quote_share);
}
);