diff options
author | Dalf <alex@al-f.net> | 2019-07-13 07:57:10 +0200 |
---|---|---|
committer | Dalf <alex@al-f.net> | 2019-07-13 15:49:59 +0200 |
commit | 45702b77ca4759043f3b87f24983039f21ba2c32 (patch) | |
tree | 14c27be89360b938264033658070589bc5539a30 /searx/engines/youtube_noapi.py | |
parent | 609ac5795ab16ab8a80a89feb54a9e23d4dec725 (diff) | |
download | searxng-45702b77ca4759043f3b87f24983039f21ba2c32.tar.gz searxng-45702b77ca4759043f3b87f24983039f21ba2c32.zip |
embedded iframe (youtube, dailymotion, vimeo): use https
Diffstat (limited to 'searx/engines/youtube_noapi.py')
-rw-r--r-- | searx/engines/youtube_noapi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/youtube_noapi.py b/searx/engines/youtube_noapi.py index 3bf25932b..53a10bf35 100644 --- a/searx/engines/youtube_noapi.py +++ b/searx/engines/youtube_noapi.py @@ -30,7 +30,7 @@ time_range_dict = {'day': 'Ag', 'year': 'BQ'} embedded_url = '<iframe width="540" height="304" ' +\ - 'data-src="//www.youtube-nocookie.com/embed/{videoid}" ' +\ + 'data-src="https://www.youtube-nocookie.com/embed/{videoid}" ' +\ 'frameborder="0" allowfullscreen></iframe>' base_youtube_url = 'https://www.youtube.com/watch?v=' |