[fallenangels] unescape chapter titles

This commit is contained in:
Mike Fährmann
2018-10-20 18:31:26 +02:00
parent 655549df7c
commit d1f3d32eec
3 changed files with 6 additions and 4 deletions

View File

@@ -97,9 +97,11 @@ class FallenangelsMangaExtractor(MangaExtractor):
manga, _, chapter = chapter.rpartition(" ")
chapter, dot, minor = chapter.partition(".")
results.append((url, {
"manga": manga, "title": title,
"manga": manga,
"title": text.unescape(title),
"volume": text.parse_int(volume),
"chapter": text.parse_int(chapter),
"chapter_minor": dot + minor,
"lang": self.lang, "language": language,
"lang": self.lang,
"language": language,
}))