diff --git a/src/Model/UserItem.php b/src/Model/UserItem.php index 89dbafed82..afb13829df 100644 --- a/src/Model/UserItem.php +++ b/src/Model/UserItem.php @@ -75,7 +75,7 @@ class UserItem private static function setNotificationForUser(array $item, int $uid) { $thread = Item::selectFirstThreadForUser($uid, ['ignored'], ['iid' => $item['parent'], 'deleted' => false]); - if ($thread['ignored']) { + if (!empty($thread['ignored'])) { return; }