From 3234e625f4a2261a34c42526fb842cee843e958c Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Sat, 7 Feb 2026 00:25:46 +0100 Subject: [PATCH] no await --- teleforma/views/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teleforma/views/core.py b/teleforma/views/core.py index 03c16470..e3f03eb0 100644 --- a/teleforma/views/core.py +++ b/teleforma/views/core.py @@ -1083,7 +1083,7 @@ class LiveConferenceNotifyAsync(APIView): for course in courses: if conference.course == course['course'] and \ conference.course_type in course['types']: - await notify(student.user, text, url) + notify(student.user, text, url) logger.info("Student notified: " + student.user.username) except Exception as e: logger.warning("Student NOT notified: " + str(student.id)) -- 2.39.5