From: Guillaume Pellerin Date: Sat, 1 Aug 2026 08:53:52 +0000 (+0200) Subject: bugfix X-Git-Tag: 3.1.0~14 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=7953db7fe0c22f99c537f3a04df33b4fef66e207;p=teleforma.git bugfix --- 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):