mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-22 03:23:40 +00:00
Merge pull request #760 from MrPetovan/bug/5913-fix-twitter-share
[twitter] Add missing parameter to converShare
This commit is contained in:
commit
cbb75b2329
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in a new issue