Issue 6521: Don't show notifications on posts that the user deleted

This commit is contained in:
Michael 2019-03-15 05:23:45 +00:00
parent eb4fb97348
commit 3b7be251d5
1 changed files with 1 additions and 1 deletions

View File

@ -784,7 +784,7 @@ function check_item_notification($itemid, $uid, $defaulttype = "") {
'author-link', 'author-name', 'author-avatar', 'author-id',
'guid', 'parent-uri', 'uri', 'contact-id', 'network'];
$condition = ['id' => $itemid, 'gravity' => [GRAVITY_PARENT, GRAVITY_COMMENT]];
$item = Item::selectFirst($fields, $condition);
$item = Item::selectFirstForUser($uid, $fields, $condition);
if (!DBA::isResult($item) || in_array($item['author-id'], $contacts)) {
return false;
}