From 9222681d183a213118c7b206f5c6c177ce234ee2 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Sun, 21 Oct 2018 08:45:53 -0400 Subject: [PATCH] [twitter] Add missing parameter to converShare --- twitter/twitter.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } );