From d2dfd083add63b5c807d8398434520344591c82e Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Wed, 1 Oct 2025 16:23:41 +0200 Subject: [PATCH] fix https for webclasses --- 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 97994e01..ce45310b 100755 --- a/teleforma/models/core.py +++ b/teleforma/models/core.py @@ -888,7 +888,7 @@ class WebclassMixin(Model): data = { 'start': start, 'end': end, - 'url': url, + 'url': url.replace("http://", "https://"), 'state': str(recording['state']), } data['duration'] = data['end'] - data['start'] -- 2.39.5