From 938b9b66a84f4822128b7f9fa11390d304c8b553 Mon Sep 17 00:00:00 2001 From: Aevann Date: Mon, 24 Apr 2023 15:50:04 +0200 Subject: [PATCH] fix this https://rdrama.net/post/18459/marseycapywalking-megathread-for-bugs-and-suggestions/3994772#context --- files/routes/notifications.py | 1 + 1 file changed, 1 insertion(+) diff --git a/files/routes/notifications.py b/files/routes/notifications.py index cba32d1d2..d9d3a186a 100644 --- a/files/routes/notifications.py +++ b/files/routes/notifications.py @@ -23,6 +23,7 @@ def clear(v): g.db.add(n) v.last_viewed_post_notifs = int(time.time()) v.last_viewed_log_notifs = int(time.time()) + v.last_viewed_reddit_notifs = int(time.time()) g.db.add(v) return {"message": "Notifications marked as read!"}