[vsco] handle missing 'description' fields
This commit is contained in:
@@ -61,7 +61,7 @@ class VscoExtractor(Extractor):
|
|||||||
"video" : img["is_video"],
|
"video" : img["is_video"],
|
||||||
"width" : img["width"],
|
"width" : img["width"],
|
||||||
"height": img["height"],
|
"height": img["height"],
|
||||||
"description": img["description"],
|
"description": img.get("description") or "",
|
||||||
})
|
})
|
||||||
yield Message.Url, url, data
|
yield Message.Url, url, data
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user