From 58b2a47631363e9d35d8194694483b53ed06b03c Mon Sep 17 00:00:00 2001 From: default Date: Fri, 14 Apr 2023 19:21:57 +0200 Subject: [PATCH] Set the timeline check time after showing the notifications. --- html.c | 5 +++++ 1 file changed, 5 insertions(+) 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, "\n\n"); + /* set the check time to now */ + xs *dummy = notify_check_time(snac, 1); + + timeline_touch(snac); + return s; }