1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-06-28 09:28:33 +00:00

fix: vk_id cookie regex group

This commit is contained in:
DarkCat09 2025-03-29 14:57:59 +04:00
parent 65724fe408
commit 84c4dc1b20
No known key found for this signature in database

View File

@ -84,7 +84,7 @@ def _parse_vk_id(self):
if not mobj: if not mobj:
return 0 return 0
return int(mobj[1]) return int(mobj[0])
def _download_payload(self, path, video_id, data, fatal=True): def _download_payload(self, path, video_id, data, fatal=True):
endpoint = f'https://vk.com/{path}.php' endpoint = f'https://vk.com/{path}.php'