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/dailymotion.py | |
| parent | 3b8b862d8c31e8e55f2fc6e0de74a0fcbb899c76 (diff) | |
| parent | f750df871318c435c40c7d910e5dcd47b350e73d (diff) | |
Merge branch 'master' into bang_fixes
Diffstat (limited to 'searx/engines/dailymotion.py')
| -rw-r--r-- | searx/engines/dailymotion.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/dailymotion.py b/searx/engines/dailymotion.py index 06a9c41f3..069aceaa3 100644 --- a/searx/engines/dailymotion.py +++ b/searx/engines/dailymotion.py @@ -26,7 +26,7 @@ language_support = True # see http://www.dailymotion.com/doc/api/obj-video.html search_url = 'https://api.dailymotion.com/videos?fields=created_time,title,description,duration,url,thumbnail_360_url,id&sort=relevance&limit=5&page={pageno}&{query}' # noqa embedded_url = '<iframe frameborder="0" width="540" height="304" ' +\ - 'data-src="//www.dailymotion.com/embed/video/{videoid}" allowfullscreen></iframe>' + 'data-src="https://www.dailymotion.com/embed/video/{videoid}" allowfullscreen></iframe>' supported_languages_url = 'https://api.dailymotion.com/languages' |