From: Guillaume Pellerin Date: Fri, 6 Feb 2026 23:25:46 +0000 (+0100) Subject: no await X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=3234e625f4a2261a34c42526fb842cee843e958c;p=teleforma.git no await --- 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))