forked from friendica/friendica-addons
[twitter] Fix wrong namespace for getTags
Fixes https://github.com/friendica/friendica/issues/6109 Addresses https://github.com/friendica/friendica/issues/5913#issuecomment-437628443
This commit is contained in:
parent
2d745b11d7
commit
053fb67a98
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue