mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2024-11-29 19:47:54 +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']:
|
for video_data in season_data['list']:
|
||||||
entries.append(self.url_result(
|
entries.append(self.url_result(
|
||||||
_BASE_URL + '/player/' + video_data['slug'], 'AnimeLab',
|
_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 {
|
return {
|
||||||
|
Loading…
Reference in New Issue
Block a user