From 111ed200537055ea3e8148c6eae1b86fd0d5fa71 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Mon, 9 Feb 2026 23:20:23 +0100 Subject: [PATCH] fix method name --- teleforma/models/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teleforma/models/core.py b/teleforma/models/core.py index 54f8a3a5..96d54e63 100644 --- a/teleforma/models/core.py +++ b/teleforma/models/core.py @@ -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: -- 2.39.5