From: Michael Date: Tue, 19 Mar 2019 22:07:53 +0000 (+0000) Subject: Fixing automention X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=ea4030804838dd2a11c30b2072412b765491fbfd;p=friendica.git Fixing automention --- diff --git a/src/Object/Post.php b/src/Object/Post.php index db7c665292..2890c87ecd 100644 --- a/src/Object/Post.php +++ b/src/Object/Post.php @@ -808,7 +808,7 @@ class Post extends BaseObject $terms = Term::tagArrayFromItemId($this->getId(), [Term::MENTION, Term::IMPLICIT_MENTION]); foreach ($terms as $term) { $profile = Contact::getDetailsByURL($term['url']); - if (!empty($profile['addr']) && (defaults($profile, 'contact-type', Contact::TYPE_COMMUNITY) != Contact::TYPE_COMMUNITY) && + if (!empty($profile['addr']) && (defaults($profile, 'contact-type', Contact::TYPE_UNKNOWN) != Contact::TYPE_COMMUNITY) && ($profile['addr'] != $owner['addr']) && !strstr($text, $profile['addr'])) { $text .= '@' . $profile['addr'] . ' '; }