Move Notify::TYPE_MAIL

This commit is contained in:
nupplaPhil 2020-02-04 22:10:19 +01:00
parent e6fb044e60
commit 9435cc4b88
No known key found for this signature in database
GPG key ID: D8365C3D36B77D90
8 changed files with 11 additions and 8 deletions

View file

@ -112,7 +112,7 @@ class Delegation extends BaseModule
$identities[$key]['selected'] = ($identity['nickname'] === DI::app()->user['nickname']);
$condition = ["`uid` = ? AND `msg` != '' AND NOT (`type` IN (?, ?)) AND NOT `seen`", $identity['uid'], Type::INTRO, NOTIFY_MAIL];
$condition = ["`uid` = ? AND `msg` != '' AND NOT (`type` IN (?, ?)) AND NOT `seen`", $identity['uid'], Type::INTRO, Type::MAIL];
$params = ['distinct' => true, 'expression' => 'parent'];
$notifications = DBA::count('notify', $condition, $params);