[aryion] Unescape paths too (#1414)

Without this you'll get paths like this:
  - Starcross - Ch. 2 "The Ins and Outs of Sarah"

This commit changes it to:
  - Starcross - Ch. 2 "The Ins and Outs of Sarah"
This commit is contained in:
Magnus Boman
2021-03-27 18:25:38 +01:00
committed by GitHub
parent 5ad615f0db
commit 522d0a834c

View File

@@ -126,7 +126,8 @@ class AryionExtractor(Extractor):
"user" : self.user or artist,
"title" : title,
"artist": artist,
"path" : text.split_html(extr("cookiecrumb'>", '</span'))[4:-1:2],
"path" : text.split_html(text.unescape(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(",", "")),