diff options
author | default <nobody@localhost> | 2023-04-14 19:21:57 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2023-04-14 19:21:57 +0200 |
commit | 58b2a47631363e9d35d8194694483b53ed06b03c (patch) | |
tree | d50144333a991e14a46c597619f3d6048bc1c5de | |
parent | bd21d144de18bf67facef287705e34ba030b46d8 (diff) |
Set the timeline check time after showing the notifications.
-rw-r--r-- | html.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1273,6 +1273,11 @@ xs_str *html_notifications(snac *snac) s = xs_str_cat(s, "</body>\n</html>\n"); + /* set the check time to now */ + xs *dummy = notify_check_time(snac, 1); + + timeline_touch(snac); + return s; } |