diff options
| author | Alexandre Flament <alex@al-f.net> | 2019-07-16 11:03:52 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-07-16 11:03:52 +0200 |
| commit | 4d38b8bef7de16f741d20839ee5d31a48d499f81 (patch) | |
| tree | 3ad42e60342e90d577c1f83c5e726665163a4a7d /searx/engines/youtube_api.py | |
| parent | 3b8b862d8c31e8e55f2fc6e0de74a0fcbb899c76 (diff) | |
| parent | f750df871318c435c40c7d910e5dcd47b350e73d (diff) | |
Merge branch 'master' into bang_fixes
Diffstat (limited to 'searx/engines/youtube_api.py')
| -rw-r--r-- | searx/engines/youtube_api.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/youtube_api.py b/searx/engines/youtube_api.py index 6de18aa2c..bc4c0d58e 100644 --- a/searx/engines/youtube_api.py +++ b/searx/engines/youtube_api.py @@ -23,7 +23,7 @@ base_url = 'https://www.googleapis.com/youtube/v3/search' search_url = base_url + '?part=snippet&{query}&maxResults=20&key={api_key}' 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=' |