snac2

Fork of https://codeberg.org/grunfink/snac2
git clone https://git.inz.fi/snac2
Log | Files | Refs | README | LICENSE

commit 58b2a47631363e9d35d8194694483b53ed06b03c
parent bd21d144de18bf67facef287705e34ba030b46d8
Author: default <nobody@localhost>
Date:   Fri, 14 Apr 2023 19:21:57 +0200

Set the timeline check time after showing the notifications.

Diffstat:
Mhtml.c | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git 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; }