[orf:radio] Switch download URLs to HTTPS (closes #29012) (#29046)

merge-requests/5/head
Lukas Anzinger 2021-05-31 23:23:09 +02:00 committed by Lauren Liberda
parent 8d0c50580c
commit 56d9861eb5
1 changed files with 1 additions and 1 deletions

View File

@ -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,