mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2024-11-26 10:24:33 +01:00
[AnimeLab] Correctly pass playlist item ids as strings fixing --download-archive
This commit is contained in:
parent
924a92d3c0
commit
395f0e7b11
@ -253,7 +253,7 @@ class AnimeLabShowsIE(AnimeLabBaseIE):
|
||||
for video_data in season_data['list']:
|
||||
entries.append(self.url_result(
|
||||
_BASE_URL + '/player/' + video_data['slug'], 'AnimeLab',
|
||||
video_data.get('id'), video_data.get('name')
|
||||
str_or_none(video_data.get('id')), video_data.get('name')
|
||||
))
|
||||
|
||||
return {
|
||||
|
Loading…
Reference in New Issue
Block a user