1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-03-07 01:07:23 +08:00

[atresplayer] Fix 404 error downloading json metadata

Fixes #24927
This commit is contained in:
Antonio Filgueras 2020-04-25 16:24:52 +02:00
parent 38db9a405a
commit 6605e410b3

View File

@ -79,7 +79,7 @@ class AtresPlayerIE(InfoExtractor):
try:
episode = self._download_json(
self._API_BASE + 'client/v1/player/episode/' + video_id, video_id)
self._API_BASE + 'player/v1/episode/' + video_id, video_id)
except ExtractorError as e:
self._handle_error(e, 403)