aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortlsssl <63866177+tlsssl@users.noreply.github.com>2020-05-19 19:13:06 +0000
committerGitHub <noreply@github.com>2020-05-20 02:13:06 +0700
commit9a269547f2268822724018330c8a939d3bdc2db4 (patch)
tree380b4fac1efaca24578f19d210d635b63e9757aa
parentbf097a5077036d25e5c2ae2ea2d3b8c55bfdc83c (diff)
downloadyoutube-dl-9a269547f2268822724018330c8a939d3bdc2db4.tar.xz
[indavideo] Switch to HTTPS for API request (#25191)
-rw-r--r--youtube_dl/extractor/indavideo.py2
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']