From: Hypolite Petovan Date: Sun, 21 Oct 2018 12:45:53 +0000 (-0400) Subject: [twitter] Add missing parameter to converShare X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=9222681d183a213118c7b206f5c6c177ce234ee2;p=friendica-addons.git [twitter] Add missing parameter to converShare --- diff --git a/twitter/twitter.php b/twitter/twitter.php index 1c36cee6..d3440d53 100644 --- a/twitter/twitter.php +++ b/twitter/twitter.php @@ -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); } );