[vrv] Don't raise error when thumbnails are missing

Closes #983
pull/987/head
pukkandan 2021-09-16 00:31:22 +05:30
rodzic dbf7eca917
commit f7590d4764
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 0F00D95A001F4698
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -218,7 +218,7 @@ class VRVIE(VRVBaseIE):
})
thumbnails = []
for thumbnail in traverse_obj(video_data, ('images', 'thumbnail', ..., ...)):
for thumbnail in traverse_obj(video_data, ('images', 'thumbnail', ..., ...)) or []:
thumbnail_url = thumbnail.get('source')
if not thumbnail_url:
continue