From 902db843a0f7681596c0f0e6f18be70d88935870 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Sat, 8 Aug 2026 11:03:19 +0200 Subject: [PATCH] force conference save --- .../commands/teleforma-publish-notify-conferences.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/teleforma/management/commands/teleforma-publish-notify-conferences.py b/teleforma/management/commands/teleforma-publish-notify-conferences.py index 84724d56..807b42bb 100644 --- a/teleforma/management/commands/teleforma-publish-notify-conferences.py +++ b/teleforma/management/commands/teleforma-publish-notify-conferences.py @@ -86,8 +86,10 @@ class Command(BaseCommand): logger.logger.info("Starting conference publication process") for publication in publications: - conference = publication.conference + conference.status = 3 + conference.streaming = False + conference.save() medias = conference.media.all() if medias: -- 2.47.3