This commit is contained in:
caiwx86 2022-12-22 14:29:22 +08:00
parent f583abdf0e
commit b9c5c352c6

View File

@ -181,7 +181,7 @@ class comicEntity:
base_url = comicInfo.getBaseUrl(chapter_url)
chapterAPIUrl = base_url+chapterAPIPath
ntfy.sendMsg(f"chapterApiUrl= {chapterAPIUrl}")
data = htmlUtils.getJSON(chapterAPIUrl)
data = json.loads(htmlUtils.getJSON(chapterAPIUrl))
data = data.get("chapter")
chapterName = data.get("name")
images = data.get("images")