From 2d1ca79c0c4e18faa396d22cf0917fc9bc182b6c Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Mon, 9 Feb 2026 23:31:46 +0100 Subject: [PATCH] bugfix --- 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 75b8a7de..ee8316d7 100644 --- a/teleforma/models/core.py +++ b/teleforma/models/core.py @@ -688,7 +688,7 @@ def _notify_live_conference_thread(conference_id): try: conference = Conference.objects.get(id=conference_id) if conference.streaming and not conference.notified_live: - logger.info("notify conference on secondary thread " + conference.id) + logger.info("notify conference on secondary thread " + str(conference.id)) conference.notify_live_sync() conference.notified_live = True conference.save() -- 2.39.5