1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2025-01-31 19:51:34 +01:00

[mangahere] fix chapter extraction

This commit is contained in:
Mike Fährmann 2025-01-26 21:16:24 +01:00
parent 6b6a4942b6
commit 4bd9b2672c
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

View File

@ -37,7 +37,7 @@ class MangahereChapterExtractor(MangahereBase, ChapterExtractor):
def metadata(self, page):
pos = page.index("</select>")
count , pos = text.extract(page, ">", "<", pos - 20)
count , pos = text.extract(page, ">", "<", pos - 40)
manga_id , pos = text.extract(page, "series_id = ", ";", pos)
chapter_id, pos = text.extract(page, "chapter_id = ", ";", pos)
manga , pos = text.extract(page, '"name":"', '"', pos)
@ -61,9 +61,9 @@ class MangahereChapterExtractor(MangahereBase, ChapterExtractor):
while True:
url, pos = text.extract(page, '<img src="', '"')
yield text.ensure_http_scheme(url), None
yield text.ensure_http_scheme(text.unescape(url)), None
url, pos = text.extract(page, ' src="', '"', pos)
yield text.ensure_http_scheme(url), None
yield text.ensure_http_scheme(text.unescape(url)), None
pnum += 2
page = self.request(self.url_fmt.format(self.part, pnum)).text