Fix MangaDex
This commit is contained in:
parent
71db0d5f32
commit
8a7476e81d
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ class MangaDex(_ParserScraper):
|
||||||
chapterBlock = chapterData.json()
|
chapterBlock = chapterData.json()
|
||||||
chapterTotal = chapterBlock['total']
|
chapterTotal = chapterBlock['total']
|
||||||
chapterOffset = chapterBlock['offset'] + chapterBlock['limit']
|
chapterOffset = chapterBlock['offset'] + chapterBlock['limit']
|
||||||
chapterList.extend(map(lambda c: c['data'], chapterBlock['results']))
|
chapterList.extend(chapterBlock['data'])
|
||||||
|
|
||||||
# Determine if manga is complete and/or adult
|
# Determine if manga is complete and/or adult
|
||||||
if manga['attributes']['lastChapter'] != '0':
|
if manga['attributes']['lastChapter'] != '0':
|
||||||
|
|
Loading…
Reference in a new issue