[twitter] Fix wrong namespace for getTags
authorHypolite Petovan <hypolite@mrpetovan.com>
Sun, 11 Nov 2018 01:52:57 +0000 (20:52 -0500)
committerGitHub <noreply@github.com>
Sun, 11 Nov 2018 01:52:57 +0000 (20:52 -0500)
Fixes https://github.com/friendica/friendica/issues/6109
Addresses https://github.com/friendica/friendica/issues/5913#issuecomment-437628443

twitter/twitter.php

index a51d374..904cfef 100644 (file)
@@ -65,6 +65,7 @@ use Abraham\TwitterOAuth\TwitterOAuth;
 use Abraham\TwitterOAuth\TwitterOAuthException;
 use Friendica\App;
 use Friendica\Content\OEmbed;
+use Friendica\Content\Text\BBCode;
 use Friendica\Content\Text\Plaintext;
 use Friendica\Core\Addon;
 use Friendica\Core\Config;
@@ -1265,7 +1266,7 @@ function twitter_expand_entities(App $a, $body, $item, $picture)
        }
 
        // it seems as if the entities aren't always covering all mentions. So the rest will be checked here
-       $tags = Strings::getTags($body);
+       $tags = BBCode::getTags($body);
 
        if (count($tags)) {
                foreach ($tags as $tag) {