commit: 955894e72fd8d4fdce5d85fc006d548278e6d9eb
parent 287e50b56b4c71da8fd0c3ffdeca9bff5ab0b005
Author: Remita Amine <remitamine@gmail.com>
Date: Tue, 30 Mar 2021 10:00:40 +0100
[vlive] fix inkey request(closes #28589)
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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: