There was an error while loading. Please reload this page.
1 parent f29dc4d commit ac55db0Copy full SHA for ac55db0
2 files changed
pyproject.toml
@@ -1,6 +1,6 @@
1
[project]
2
name = "funread"
3
-version = "1.1.35"
+version = "1.1.36"
4
description = "一个用于管理和处理阅读源(Legado 阅读 APP 的书源和 RSS 源)的 Python 工具库"
5
readme = "README.md"
6
requires-python = ">=3.8"
src/funread/legado/manage/download/base.py
@@ -141,7 +141,7 @@ def add_source_to_candidate(
141
data["final"] = False if "final" not in data else data["final"]
142
143
# 是最终版本,直接返回
144
- if data["final"]:
+ if data["final"] or not data["available"]:
145
return
146
# 收集所有已存在的 MD5 值
147
md5_list: List[str] = []
0 commit comments