Browse Source

[instagram] Handling null values (fixes #5919)

I didn't add the test case here because it takes too much time. (7
minutes on my machine)
Yen Chi Hsuan 10 years ago
parent
commit
edb99d4c18
1 changed files with 3 additions and 1 deletions
  1. 3 1
      youtube_dl/extractor/instagram.py

+ 3 - 1
youtube_dl/extractor/instagram.py

@@ -100,7 +100,9 @@ class InstagramUserIE(InfoExtractor):
                 thumbnails_el = it.get('images', {})
                 thumbnail = thumbnails_el.get('thumbnail', {}).get('url')
 
-                title = it.get('caption', {}).get('text', it['id'])
+                # In some cases caption is null, which corresponds to None
+                # in python. As a result, it.get('caption', {}) gives None
+                title = (it.get('caption') or {}).get('text', it['id'])
 
                 entries.append({
                     'id': it['id'],