diff options
| author | tlsssl <63866177+tlsssl@users.noreply.github.com> | 2020-05-19 19:13:06 +0000 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-20 02:13:06 +0700 | 
| commit | 9a269547f2268822724018330c8a939d3bdc2db4 (patch) | |
| tree | 380b4fac1efaca24578f19d210d635b63e9757aa | |
| parent | bf097a5077036d25e5c2ae2ea2d3b8c55bfdc83c (diff) | |
[indavideo] Switch to HTTPS for API request (#25191)
| -rw-r--r-- | youtube_dl/extractor/indavideo.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/indavideo.py b/youtube_dl/extractor/indavideo.py index 2b5b2b5b0..4c16243ec 100644 --- a/youtube_dl/extractor/indavideo.py +++ b/youtube_dl/extractor/indavideo.py @@ -58,7 +58,7 @@ class IndavideoEmbedIE(InfoExtractor):          video_id = self._match_id(url)          video = self._download_json( -            'http://amfphp.indavideo.hu/SYm0json.php/player.playerHandler.getVideoData/%s' % video_id, +            'https://amfphp.indavideo.hu/SYm0json.php/player.playerHandler.getVideoData/%s' % video_id,              video_id)['data']          title = video['title']  | 
