diff options
author | Remita Amine <remitamine@gmail.com> | 2021-03-30 10:00:40 +0100 |
---|---|---|
committer | Remita Amine <remitamine@gmail.com> | 2021-03-30 10:01:06 +0100 |
commit | 955894e72fd8d4fdce5d85fc006d548278e6d9eb (patch) | |
tree | 13b8d5cf9e5ecb5f5e06e388ceeff4dd8d6447ad | |
parent | 287e50b56b4c71da8fd0c3ffdeca9bff5ab0b005 (diff) |
[vlive] fix inkey request(closes #28589)
-rw-r--r-- | youtube_dl/extractor/vlive.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/vlive.py b/youtube_dl/extractor/vlive.py index e2f5d81b8..42da34d44 100644 --- a/youtube_dl/extractor/vlive.py +++ b/youtube_dl/extractor/vlive.py @@ -106,7 +106,7 @@ class VLiveIE(VLiveBaseIE): raise ExtractorError('Unable to log in', expected=True) def _call_api(self, path_template, video_id, fields=None): - query = {'appId': self._APP_ID, 'gcc': 'KR'} + query = {'appId': self._APP_ID, 'gcc': 'KR', 'platformType': 'PC'} if fields: query['fields'] = fields try: |