diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-04-01 13:58:33 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-04-01 13:59:22 +0530 |
commit | cce889b900b3fabc765a249a78c6836da6d657d6 (patch) | |
tree | f58f5ab835c3ee73e38df5adf12bae5df9db43cf /yt_dlp/extractor/vlive.py | |
parent | a6ae61a4c28b28c10de5ff359bff81ce7b4547e8 (diff) |
Update to ytdl v2021-04-01
https://github.com/ytdl-org/youtube-dl/commit/14f29f087e6097feb46bdb84878924bc410a57eb
Closes #205
Diffstat (limited to 'yt_dlp/extractor/vlive.py')
-rw-r--r-- | yt_dlp/extractor/vlive.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/vlive.py b/yt_dlp/extractor/vlive.py index 533bfd5da..d1cfd4510 100644 --- a/yt_dlp/extractor/vlive.py +++ b/yt_dlp/extractor/vlive.py @@ -113,7 +113,7 @@ class VLiveIE(VLiveBaseIE): raise ExtractorError('Unable to log in', expected=True) def _call_api(self, path_template, video_id, fields=None, limit=None): - query = {'appId': self._APP_ID, 'gcc': 'KR'} + query = {'appId': self._APP_ID, 'gcc': 'KR', 'platformType': 'PC'} if fields: query['fields'] = fields if limit: |