[xhamster] unescape 'title' and 'description'

This commit is contained in:
Mike Fährmann
2019-10-04 14:44:51 +02:00
parent 1b9bf4fc6e
commit 5a54efa025

View File

@@ -119,8 +119,8 @@ class XhamsterGalleryExtractor(XhamsterExtractor):
"views" : text.parse_int(imgs["views"]),
"likes" : text.parse_int(imgs["rating"]["likes"]),
"dislikes" : text.parse_int(imgs["rating"]["dislikes"]),
"title" : imgs["title"],
"description": imgs["description"],
"title" : text.unescape(imgs["title"]),
"description": text.unescape(imgs["description"]),
"thumbnail" : imgs["thumbURL"],
},
"count": text.parse_int(imgs["quantity"]),