summaryrefslogtreecommitdiff
path: root/html.c
diff options
context:
space:
mode:
authordefault <nobody@localhost>2023-04-14 19:21:57 +0200
committerdefault <nobody@localhost>2023-04-14 19:21:57 +0200
commit58b2a47631363e9d35d8194694483b53ed06b03c (patch)
treed50144333a991e14a46c597619f3d6048bc1c5de /html.c
parentbd21d144de18bf67facef287705e34ba030b46d8 (diff)
Set the timeline check time after showing the notifications.
Diffstat (limited to 'html.c')
-rw-r--r--html.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/html.c b/html.c
index 53fe6d5..a54c782 100644
--- a/html.c
+++ b/html.c
@@ -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;
}