From 77624b91f34e478f6a283a20cb59cc5af3cb4896 Mon Sep 17 00:00:00 2001 From: Yoan Le Clanche Date: Mon, 27 Feb 2023 08:38:53 +0100 Subject: [PATCH] Fix disabled publication notified state --- .../management/commands/teleforma-publish-notify-conferences.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teleforma/management/commands/teleforma-publish-notify-conferences.py b/teleforma/management/commands/teleforma-publish-notify-conferences.py index 761fdff0..a594a068 100644 --- a/teleforma/management/commands/teleforma-publish-notify-conferences.py +++ b/teleforma/management/commands/teleforma-publish-notify-conferences.py @@ -144,7 +144,7 @@ class Command(BaseCommand): for user in User.objects.filter(is_staff=True): notify(user, message, url) - # publication.notified = True + publication.notified = True publication.save() # streaming published end conference should have a streaming propery set to False -- 2.39.5