aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLesmiscore <nao20010128@gmail.com>2023-04-13 16:09:20 +0900
committerLesmiscore <nao20010128@gmail.com>2023-04-13 16:09:20 +0900
commitd1483ec693c79f0b4ddf493870bcb840aca4da08 (patch)
tree3ee8faaeb124c07ec7d42c440c85d86506bbc2b7
parent979568f26ece80bca72b48f0dd57d676e431059a (diff)
downloadhypervideo-pre-d1483ec693c79f0b4ddf493870bcb840aca4da08.tar.lz
hypervideo-pre-d1483ec693c79f0b4ddf493870bcb840aca4da08.tar.xz
hypervideo-pre-d1483ec693c79f0b4ddf493870bcb840aca4da08.zip
[extractor/iwara] Fix typo
Authored by: Lesmiscore Closes #6795
-rw-r--r--yt_dlp/extractor/iwara.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/iwara.py b/yt_dlp/extractor/iwara.py
index ae2960af0..9dbb141fd 100644
--- a/yt_dlp/extractor/iwara.py
+++ b/yt_dlp/extractor/iwara.py
@@ -76,7 +76,7 @@ class IwaraIE(InfoExtractor):
def _real_extract(self, url):
video_id = self._match_id(url)
- video_data = self._download_json(f'http://api.iwara.tv/video/{video_id}', video_id, expected_status=lambda x: True)
+ video_data = self._download_json(f'https://api.iwara.tv/video/{video_id}', video_id, expected_status=lambda x: True)
errmsg = video_data.get('message')
# at this point we can actually get uploaded user info, but do we need it?
if errmsg == 'errors.privateVideo':