From 7953db7fe0c22f99c537f3a04df33b4fef66e207 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Sat, 1 Aug 2026 10:53:52 +0200 Subject: [PATCH] bugfix --- teleforma/models/core.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/teleforma/models/core.py b/teleforma/models/core.py index 9b3eeaa0..3447b199 100644 --- a/teleforma/models/core.py +++ b/teleforma/models/core.py @@ -716,10 +716,6 @@ def notif_live_conference_thread(sender, instance, *args, **kwargs): thread = threading.Thread(target=_notify_live_conference_thread, args=(instance.id,)) thread.daemon = True thread.start() - if not instance.streaming and not instance.notified: - thread = threading.Thread(target=_notify_conference_publication_thread, args=(instance.id,)) - thread.daemon = True - thread.start() def notif_live_conference_sync(sender, instance, *args, **kwargs): -- 2.47.3