From 02455f96d8cdeff8cfc0d46bdb0e42949d491fe0 Mon Sep 17 00:00:00 2001 From: caiwx86 Date: Thu, 22 Dec 2022 13:28:16 +0800 Subject: [PATCH] fix --- utils/entity/RouMan.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/entity/RouMan.py b/utils/entity/RouMan.py index f4b5989..24be582 100644 --- a/utils/entity/RouMan.py +++ b/utils/entity/RouMan.py @@ -175,7 +175,7 @@ class comicEntity: if chapterAPIPath != None: base_url = comicInfo.getBaseUrl(chapter_url) chapterAPIUrl = base_url+chapterAPIPath - data = htmlUtils.getJSON(chapterAPIUrl) + data = json.loads(htmlUtils.getJSON(chapterAPIUrl)) data = data.get("chapter") chapterName = data.get("name") images = data.get("images")