]> git.mxchange.org Git - friendica-addons.git/commitdiff
[twitter] Shorten foreign share mention
authorHypolite Petovan <hypolite@mrpetovan.com>
Thu, 18 Oct 2018 02:28:28 +0000 (22:28 -0400)
committerHypolite Petovan <hypolite@mrpetovan.com>
Thu, 18 Oct 2018 02:28:28 +0000 (22:28 -0400)
twitter/twitter.php

index c69a1f8169d47457d1c0f3e48b35369744d33b26..1c36cee68fb2a6ce616798a5758ea6f3f8484b27 100644 (file)
@@ -1896,7 +1896,7 @@ function twitter_convert_share(array $attributes, array $author_contact, $conten
        if ($author_contact['network'] == Protocol::TWITTER) {
                $mention = '@' . $author_contact['nickname'];
        } else {
-               $mention = Protocol::formatMention($attributes['profile'], $attributes['author']);
+               $mention = $author_contact['addr'];
        }
 
        return ($is_quote_share ? "\n\n" : '' ) . 'RT ' . $mention . ': ' . $content . "\n\n" . $attributes['link'];