[vsco] handle missing 'description' fields

This commit is contained in:
Mike Fährmann
2020-07-27 14:45:17 +02:00
parent 26a967cbd4
commit daeef8a5e3

View File

@@ -61,7 +61,7 @@ class VscoExtractor(Extractor):
"video" : img["is_video"],
"width" : img["width"],
"height": img["height"],
"description": img["description"],
"description": img.get("description") or "",
})
yield Message.Url, url, data