[mangasee] unescape manga names (fixes #2454)

pull/2474/head
Mike Fährmann 3 years ago
parent 7e545a3ae9
commit ecee315bbf
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# Copyright 2021 Mike Fährmann
# Copyright 2021-2022 Mike Fährmann
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
@ -64,7 +64,7 @@ class MangaseeChapterExtractor(MangaseeBase, ChapterExtractor):
self.slug = extr('vm.IndexName = "', '"')
data = self._transform_chapter(data)
data["manga"] = extr('vm.SeriesName = "', '"')
data["manga"] = text.unescape(extr('vm.SeriesName = "', '"'))
return data
def images(self, page):

Loading…
Cancel
Save