[batoto] return 'chapter_url' as string (#5562)

don't try to parse it as integer
This commit is contained in:
Mike Fährmann
2024-09-05 17:47:38 +02:00
parent 8072dcf717
commit 32d2e686c2
2 changed files with 5 additions and 6 deletions

View File

@@ -65,8 +65,7 @@ class BatotoChapterExtractor(BatotoBase, ChapterExtractor):
return {
"manga" : text.unescape(manga),
"manga_id" : text.parse_int(manga_id),
"chapter_url" : text.parse_int(extr(
self.chapter_id + "-ch_", '"')),
"chapter_url" : extr(self.chapter_id + "-ch_", '"'),
"title" : text.unescape(text.remove_html(extr(
"selected>", "</option")).partition(" : ")[2]),
"volume" : text.parse_int(volume),