From 93279f431a4798168e2e009641ea3a7f2bee7831 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Fri, 29 Aug 2025 10:40:45 +0200 Subject: [PATCH] fix https for bbb --- teleforma/webclass/models.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/teleforma/webclass/models.py b/teleforma/webclass/models.py index 1b1890d8..6c8b05f8 100644 --- a/teleforma/webclass/models.py +++ b/teleforma/webclass/models.py @@ -64,6 +64,9 @@ def get_records_from_bbb(**kwargs): url = str(url) else: continue + + url = url.replace('bbb2.parisson.com', 'bbb3.parisson.com') #HACK + url = url.replace("http://", "https://") #HACK start = int(str(recording['startTime'])[:-3]) end = int(str(recording['endTime'])[:-3]) data = { -- 2.39.5