]> git.parisson.com Git - teleforma.git/commitdiff
fix method name
authorGuillaume Pellerin <guillaume.pellerin@parisson.com>
Mon, 9 Feb 2026 22:20:23 +0000 (23:20 +0100)
committerGuillaume Pellerin <guillaume.pellerin@parisson.com>
Mon, 9 Feb 2026 22:20:23 +0000 (23:20 +0100)
teleforma/models/core.py

index 54f8a3a5ab6e4a3b71651de820e5d7abb33d8588..96d54e632e8aaf7ba3d165bb546d0e5a18871aa8 100644 (file)
@@ -687,7 +687,7 @@ def _notify_live_conference_thread(conference_id):
         conference = Conference.objects.get(id=conference_id)
         if conference.streaming and not conference.notified_live:
             print("notify conference on secondary thread", conference.id)
-            conference.notify_sync()
+            conference.notify_live_sync()
             conference.notified_live = True
             conference.save()
     except Conference.DoesNotExist: