From cebf17caaa7028422822ccb8a678f5ecb6130715 Mon Sep 17 00:00:00 2001 From: Groupr Date: Sat, 7 Jun 2025 16:00:31 +0000 Subject: [PATCH] Update notify.py --- remarkbox/lib/notify.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/remarkbox/lib/notify.py b/remarkbox/lib/notify.py index 04f14ab..d292d89 100644 --- a/remarkbox/lib/notify.py +++ b/remarkbox/lib/notify.py @@ -166,7 +166,8 @@ def deliver_scheduled_notifications(request=None): if datetime.today().weekday() == 0: notification_dict = get_email_notifications(request.dbsession, "weekly") send_digest_notifications(request, notification_dict, "weekly") - + + tm.commit() def send_immediate_notifications(request, notifications): deliver_email_notifications = request.app.get("deliver_email_notifications", True)