[flipagram] Add proper default to _search_json_ld call
authorSergey M․ <dstftw@gmail.com>
Mon, 8 Aug 2016 15:46:19 +0000 (22:46 +0700)
committerSergey M․ <dstftw@gmail.com>
Mon, 8 Aug 2016 15:46:19 +0000 (22:46 +0700)
youtube_dl/extractor/flipagram.py

index acb6133ff95fad7ab7e93c55b1835ed7a47d5d29..1902a23938eb0452eb83908ef6f12f8576bf0617 100644 (file)
@@ -48,7 +48,7 @@ class FlipagramIE(InfoExtractor):
         flipagram = video_data['flipagram']
         video = flipagram['video']
 
-        json_ld = self._search_json_ld(webpage, video_id, default=False)
+        json_ld = self._search_json_ld(webpage, video_id, default={})
         title = json_ld.get('title') or flipagram['captionText']
         description = json_ld.get('description') or flipagram.get('captionText')