This commit is contained in:
jxxghp 2023-10-03 16:14:04 -07:00
parent a0ced4e43c
commit 0e30ea92f1

View File

@ -49,6 +49,7 @@ class BrushFlow(_PluginBase):
siteshelper = None
siteoper = None
torrents = None
sites = None
qb = None
tr = None
# 添加种子定时
@ -88,6 +89,7 @@ class BrushFlow(_PluginBase):
self.siteshelper = SitesHelper()
self.siteoper = SiteOper()
self.torrents = TorrentsChain()
self.sites = SitesHelper()
if config:
self._enabled = config.get("enabled")
self._notify = config.get("notify")
@ -115,6 +117,13 @@ class BrushFlow(_PluginBase):
self._save_path = config.get("save_path")
self._clear_task = config.get("clear_task")
# 过滤掉已删除的站点
self._brushsites = [site.get("id") for site in self.sites.get_indexers() if
not site.get("public") and site.get("id") in self._brushsites]
# 保存配置
self.__update_config()
if self._clear_task:
# 清除统计数据
self.save_data("statistic", {})
@ -1877,4 +1886,3 @@ class BrushFlow(_PluginBase):
except Exception as e:
print(str(e))
return 0