[mangafox] fix URL extraction

This commit is contained in:
Mike Fährmann
2018-05-29 10:34:04 +02:00
parent a62bd81e9b
commit 70f3617d88

View File

@@ -55,7 +55,6 @@ class MangafoxChapterExtractor(ChapterExtractor):
while True:
url, pos = text.extract(page, '<img src="', '"')
yield url, None
_ , pos = text.extract(page, '<img src="', '"', pos)
url, pos = text.extract(page, '<img src="', '"', pos)
yield url, None