From 56d9861eb56979790c3e7eca8a522f64f9c44f8a Mon Sep 17 00:00:00 2001 From: Lukas Anzinger Date: Mon, 31 May 2021 23:23:09 +0200 Subject: [PATCH] [orf:radio] Switch download URLs to HTTPS (closes #29012) (#29046) --- haruhi_dl/extractor/orf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/haruhi_dl/extractor/orf.py b/haruhi_dl/extractor/orf.py index 700ce448c..3fadbcbea 100644 --- a/haruhi_dl/extractor/orf.py +++ b/haruhi_dl/extractor/orf.py @@ -182,7 +182,7 @@ class ORFRadioIE(InfoExtractor): duration = end - start if end and start else None entries.append({ 'id': loop_stream_id.replace('.mp3', ''), - 'url': 'http://loopstream01.apa.at/?channel=%s&id=%s' % (self._LOOP_STATION, loop_stream_id), + 'url': 'https://loopstream01.apa.at/?channel=%s&id=%s' % (self._LOOP_STATION, loop_stream_id), 'title': title, 'description': clean_html(data.get('subtitle')), 'duration': duration,