]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/Tag.php
Quoted reshares containing quoted reshares should now look fine
[friendica.git] / src / Model / Tag.php
index 2f034e92b7767846b005a0fea7697d38f7a8b8e5..799296dfbf6a4755b0ff3659a391ddff95f44789 100644 (file)
@@ -319,16 +319,12 @@ class Tag
                        $tags = self::TAG_CHARACTER[self::HASHTAG] . self::TAG_CHARACTER[self::MENTION] . self::TAG_CHARACTER[self::EXCLUSIVE_MENTION];
                }
 
-               // Only remove the shared data from "real" reshares
-               $shared = DI::contentItem()->getSharedPost($item, ['uri-id']);
-               if (!empty($shared)) {
-                       $item['body'] = BBCode::removeSharedData($item['body']);
-               }
-
                foreach (self::getFromBody($item['body'], $tags) as $tag) {
                        self::storeByHash($item['uri-id'], $tag[1], $tag[3], $tag[2]);
                }
 
+               $shared = DI::contentItem()->getSharedPost($item, ['uri-id']);
+
                // Search for hashtags in the shared body (but only if hashtags are wanted)
                if (!empty($shared) && (strpos($tags, self::TAG_CHARACTER[self::HASHTAG]) !== false)) {
                        foreach (self::getByURIId($shared['post']['uri-id'], [self::HASHTAG]) as $tag) {