mirror of
https://github.com/friendica/friendica
synced 2025-04-19 10:30:10 +00:00
Fix the tag detection for relay posts
This commit is contained in:
parent
3a98b958d3
commit
8fcdd87473
2 changed files with 4 additions and 4 deletions
|
@ -1658,7 +1658,7 @@ class Processor
|
|||
$tags = Receiver::processTags(JsonLD::fetchElementArray($activity['as:object'], 'as:tag') ?? []);
|
||||
if (!empty($tags)) {
|
||||
foreach ($tags as $tag) {
|
||||
if ($tag['type'] != 'Hashtag') {
|
||||
if (($tag['type'] != 'Hashtag') && !strpos($tag['type'], ':Hashtag')) {
|
||||
continue;
|
||||
}
|
||||
$messageTags[] = ltrim(mb_strtolower($tag['name']), '#');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue