summary refs log tree commit diff
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2021-03-30 10:00:40 +0100
committerRemita Amine <remitamine@gmail.com>2021-03-30 10:01:06 +0100
commit955894e72fd8d4fdce5d85fc006d548278e6d9eb (patch)
tree13b8d5cf9e5ecb5f5e06e388ceeff4dd8d6447ad
parent287e50b56b4c71da8fd0c3ffdeca9bff5ab0b005 (diff)
downloadyoutube-dl-955894e72fd8d4fdce5d85fc006d548278e6d9eb.tar.gz
youtube-dl-955894e72fd8d4fdce5d85fc006d548278e6d9eb.tar.xz
youtube-dl-955894e72fd8d4fdce5d85fc006d548278e6d9eb.zip
[vlive] fix inkey request(closes #28589)
-rw-r--r--youtube_dl/extractor/vlive.py2
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: