diff options
Diffstat (limited to 'searx/engines/mediathekviewweb.py')
-rw-r--r-- | searx/engines/mediathekviewweb.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/engines/mediathekviewweb.py b/searx/engines/mediathekviewweb.py index e28ce16c1..5570ebe24 100644 --- a/searx/engines/mediathekviewweb.py +++ b/searx/engines/mediathekviewweb.py @@ -64,11 +64,11 @@ def response(resp): results.append( { - 'url': item['url_video_hd'], + 'url': item['url_video_hd'].replace("http://", "https://"), 'title': "%(channel)s: %(title)s (%(hms)s)" % item, 'length': item['hms'], 'content': "%(description)s" % item, - 'iframe_src': item['url_video_hd'], + 'iframe_src': item['url_video_hd'].replace("http://", "https://"), 'template': 'videos.html', } ) |