[common] allow MangaExtractors to skip loading manga_url

This commit is contained in:
Mike Fährmann
2025-01-10 21:30:58 +01:00
parent af9c06f812
commit 4853406fe3

View File

@@ -772,7 +772,11 @@ class MangaExtractor(Extractor):
def items(self):
self.login()
page = self.request(self.manga_url).text
if self.manga_url:
page = self.request(self.manga_url, notfound=self.subcategory).text
else:
page = None
chapters = self.chapters(page)
if self.reverse: