]> git.mxchange.org Git - friendica.git/blobdiff - src/Object/Post.php
Merge pull request #8934 from annando/fix-fatal
[friendica.git] / src / Object / Post.php
index ba949dace39e5fcb7faa703097bd79190bcdcb18..ee886c1576a2a2342387d12dbe80642341d52959 100644 (file)
@@ -877,7 +877,7 @@ class Post
 
                $terms = Tag::getByURIId($item['uri-id'], [Tag::MENTION, Tag::IMPLICIT_MENTION, Tag::EXCLUSIVE_MENTION]);
                foreach ($terms as $term) {
-                       $profile = Contact::getByURL($term['url'], 0, ['addr', 'contact-type'], false);
+                       $profile = Contact::getByURL($term['url'], false, ['addr', 'contact-type']);
                        if (!empty($profile['addr']) && ((($profile['contact-type'] ?? '') ?: Contact::TYPE_UNKNOWN) != Contact::TYPE_COMMUNITY) &&
                                ($profile['addr'] != $owner['addr']) && !strstr($text, $profile['addr'])) {
                                $text .= '@' . $profile['addr'] . ' ';