1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-17 18:49:33 +00:00

[vlive] fix inkey request(closes #28589)

This commit is contained in:
Remita Amine 2021-03-30 10:00:40 +01:00
parent 287e50b56b
commit 955894e72f

View file

@ -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: