Hopefully final fix for false notifications

This commit is contained in:
Michael 2019-02-07 05:38:43 +00:00
parent 16bf9c771d
commit ebe767b290
2 changed files with 4 additions and 15 deletions

View File

@ -1535,17 +1535,10 @@ class Item extends BaseObject
$item['private'] = 0; $item['private'] = 0;
} }
// If its a post from myself then tag the thread as "mention" // If its a post that originated here then tag the thread as "mention"
Logger::log("Checking if parent ".$parent_id." has to be tagged as mention for user ".$item['uid'], Logger::DEBUG); if ($item['origin'] && $item['uid']) {
$user = DBA::selectFirst('user', ['nickname'], ['uid' => $item['uid']]); DBA::update('thread', ['mention' => true], ['iid' => $parent_id]);
if (DBA::isResult($user)) { Logger::log('tagged thread ' . $parent_id . ' as mention for user ' . $item['uid'], Logger::DEBUG);
$self = Strings::normaliseLink(System::baseUrl() . '/profile/' . $user['nickname']);
$self_id = Contact::getIdForURL($self, 0, true);
Logger::log("'myself' is ".$self_id." for parent ".$parent_id." checking against ".$item['author-id']." and ".$item['owner-id'], Logger::DEBUG);
if (($item['author-id'] == $self_id) || ($item['owner-id'] == $self_id)) {
DBA::update('thread', ['mention' => true], ['iid' => $parent_id]);
Logger::log("tagged thread ".$parent_id." as mention for user ".$self, Logger::DEBUG);
}
} }
} else { } else {
/* /*

View File

@ -1298,10 +1298,6 @@ class Transmitter
*/ */
public static function sendFollowObject($object, $target, $uid = 0) public static function sendFollowObject($object, $target, $uid = 0)
{ {
// Currently deactivated, due to notification problems.
// The follow message is reflected back and then causes false notifications.
return true;
$profile = APContact::getByURL($target); $profile = APContact::getByURL($target);
if (empty($uid)) { if (empty($uid)) {