[mangasee] unescape manga names (fixes #2454)
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- 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
|
# 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
|
# 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 = "', '"')
|
self.slug = extr('vm.IndexName = "', '"')
|
||||||
|
|
||||||
data = self._transform_chapter(data)
|
data = self._transform_chapter(data)
|
||||||
data["manga"] = extr('vm.SeriesName = "', '"')
|
data["manga"] = text.unescape(extr('vm.SeriesName = "', '"'))
|
||||||
return data
|
return data
|
||||||
|
|
||||||
def images(self, page):
|
def images(self, page):
|
||||||
|
|||||||
Reference in New Issue
Block a user