This commit is contained in:
jxxghp 2023-08-07 08:33:57 +08:00
parent f46af991cd
commit df5a5fc3c2

View File

@ -352,6 +352,11 @@ class SubscribeChain(ChainBase):
""" """
刷新站点最新资源 刷新站点最新资源
""" """
# 所有订阅
subscribes = self.subscribehelper.list('R')
if not subscribes:
# 没有订阅不运行
return
# 读取缓存 # 读取缓存
torrents_cache: Dict[str, List[Context]] = self.load_cache(self._cache_file) or {} torrents_cache: Dict[str, List[Context]] = self.load_cache(self._cache_file) or {}