unescape items in text.split_html()

This commit is contained in:
Mike Fährmann
2021-03-29 02:12:29 +02:00
parent 36291176bc
commit 387fe415d5
4 changed files with 13 additions and 9 deletions

View File

@@ -126,8 +126,8 @@ class AryionExtractor(Extractor):
"user" : self.user or artist,
"title" : title,
"artist": artist,
"path" : text.split_html(text.unescape(extr(
"cookiecrumb'>", '</span')))[4:-1:2],
"path" : text.split_html(extr(
"cookiecrumb'>", '</span'))[4:-1:2],
"date" : extr("class='pretty-date' title='", "'"),
"size" : text.parse_int(clen),
"views" : text.parse_int(extr("Views</b>:", "<").replace(",", "")),