diff --git a/common/BaseComicEntity.py b/common/BaseComicEntity.py index 064745c..46e2178 100644 --- a/common/BaseComicEntity.py +++ b/common/BaseComicEntity.py @@ -139,7 +139,7 @@ class baseComic: def iconDownload(cls): comic_icon_path = ComicPath.getPathConfComicIcon() chapter_icon_path = ComicPath.getPathCBZComicChapterIcon() - if ciUtils.isProgressDown and os.path.exists(comic_icon_path) and not os.path.exists(chapter_icon_path): + if os.path.exists(comic_icon_path) and not os.path.exists(chapter_icon_path): shutil.copy(comic_icon_path,chapter_icon_path) ntfy.sendMsg(f"复制成功:{comic_icon_path} -> {chapter_icon_path}") ciUtils.iconDB() \ No newline at end of file