This commit is contained in:
cwx
2023-03-31 19:57:15 +08:00
parent 9723c6b994
commit a7cfeae7eb
2 changed files with 9 additions and 12 deletions
+1 -2
View File
@@ -37,8 +37,7 @@ class comicCommon:
data = htmlUtils.getJSON(chapter_api_url)
if data != None:
data = data.get("chapter")
chapter_name = data.get("name")
images = data.get("images")
(chapter_name,images) = [data.get("name"),data.get("images")]
if images == None:
ntfy.sendMsg(f"未获取到章节图像 comic_name={book_name} chapter={chapter_name}")