mirror of
https://github.com/friendica/friendica
synced 2024-11-20 03:03:40 +00:00
API: Use NOTIF_DIRECT_THREAD_COMMENT for the API mentions as well
This commit is contained in:
parent
469eefdc5b
commit
ad11579eaa
1 changed files with 2 additions and 1 deletions
|
@ -2166,7 +2166,8 @@ function api_statuses_mentions($type)
|
|||
AND `user-item`.`iid` > ?";
|
||||
$condition = [GRAVITY_PARENT, GRAVITY_COMMENT, api_user(),
|
||||
UserItem::NOTIF_EXPLICIT_TAGGED | UserItem::NOTIF_IMPLICIT_TAGGED |
|
||||
UserItem::NOTIF_THREAD_COMMENT | UserItem::NOTIF_DIRECT_COMMENT,
|
||||
UserItem::NOTIF_THREAD_COMMENT | UserItem::NOTIF_DIRECT_COMMENT |
|
||||
UserItem::NOTIF_DIRECT_THREAD_COMMENT,
|
||||
$since_id];
|
||||
|
||||
if ($max_id > 0) {
|
||||
|
|
Loading…
Reference in a new issue