missed a spot

pull/12659/head
bashonly 4 months ago committed by GitHub
parent f05f3a9ef5
commit ea3281ad3c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -112,10 +112,7 @@ class TVerIE(InfoExtractor):
def _yield_episode_ids_for_series(self, series_id):
seasons_info = self._download_json(
f'https://service-api.tver.jp/api/v1/callSeriesSeasons/{series_id}',
series_id,
'Downloading seasons info',
headers=self._HEADERS,
)
series_id, 'Downloading seasons info', headers=self._HEADERS)
for season_id in traverse_obj(
seasons_info, ('result', 'contents', lambda _, v: v['type'] == 'season', 'content', 'id', {str})):
episodes_info = self._call_platform_api(

Loading…
Cancel
Save