aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-08-08 22:46:19 +0700
committerSergey M․ <dstftw@gmail.com>2016-08-08 22:46:19 +0700
commite8ed7354e6fdd7bd3759e24f0aa08233316303b7 (patch)
treea696030fdafc42f61ac0f951d8e05f1116b2bfb8
parent1e7f602e2ac27bac266cde4c67b31f59510a91f5 (diff)
downloadyoutube-dl-e8ed7354e6fdd7bd3759e24f0aa08233316303b7.tar.xz
[flipagram] Add proper default to _search_json_ld call
-rw-r--r--youtube_dl/extractor/flipagram.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/flipagram.py b/youtube_dl/extractor/flipagram.py
index acb6133ff..1902a2393 100644
--- a/youtube_dl/extractor/flipagram.py
+++ b/youtube_dl/extractor/flipagram.py
@@ -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')