This commit is contained in:
cwx
2023-04-01 13:23:34 +08:00
parent a756a1d1b8
commit 8deb799280
5 changed files with 12 additions and 21 deletions
+4 -1
View File
@@ -414,7 +414,8 @@ class comicInfo():
return save_path
@classmethod
def nextSaveInfoChapter(cls,chapter,data):
def nextSaveInfoChapter(cls,chapter,data=None):
if data == None: data = cls.getChapterImgs()
if cls.str_chapter != chapter:
print(f"chapter {cls.str_chapter}{chapter} 不一致,已自动跳过")
cls.setProgress(cls.PROGRESS_INFO)
@@ -468,7 +469,9 @@ class comicInfo():
@classmethod
def comicChapterDownload(cls,imgs,names):
cls.setChapterImgs(imgs)
cls.setChapterListImg(imgs)
cls.setPages(names)
cls.setChapterFilesName(names)
@classmethod