mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-16 20:05:14 +02:00
better handling of multiple notifications for same item, and old notifications
This commit is contained in:
parent
fb33b4f2bc
commit
84d5f495e6
3 changed files with 24 additions and 5 deletions
|
@ -11,8 +11,8 @@ function notify_init(&$a) {
|
|||
intval(local_user())
|
||||
);
|
||||
if(count($r)) {
|
||||
q("update notify set seen = 1 where id = %d and uid = %d limit 1",
|
||||
intval($a->argv[2]),
|
||||
q("update notify set seen = 1 where link = '%s' and uid = %d",
|
||||
dbesc($r[0]['link']),
|
||||
intval(local_user())
|
||||
);
|
||||
goaway($r[0]['link']);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue