New setting that controls notifications for ignored contacts

This commit is contained in:
Michael 2021-01-24 11:40:09 +00:00
parent 615e6f20f0
commit 0cd02631ce
4 changed files with 17 additions and 1 deletions

View file

@ -624,6 +624,11 @@ function check_item_notification($itemid, $uid, $notification_type) {
return false;
}
if (DI::pConfig()->get(local_user(), 'system', 'notify_ignored', true) && Contact\User::isIgnored($item['author-id'], $uid)) {
Logger::info('Author is ignored, dropping notification', ['cid' => $item['author-id'], 'uid' => $uid]);
return false;
}
// Generate the notification array
$params = [];
$params['otype'] = Notify\ObjectType::ITEM;