1
0
Эх сурвалжийг харах

[wistia] Fix extraction (Closes #8707)

Sergey M․ 9 жил өмнө
parent
commit
66ca2cfddd

+ 2 - 1
youtube_dl/extractor/wistia.py

@@ -35,7 +35,8 @@ class WistiaIE(InfoExtractor):
 
         formats = []
         thumbnails = []
-        for atype, a in data['assets'].items():
+        for a in data['assets']:
+            atype = a.get('type')
             if atype == 'still':
                 thumbnails.append({
                     'url': a['url'],