fix 搜索缓存

This commit is contained in:
jxxghp
2025-04-16 08:10:48 +08:00
parent 39999c9ee4
commit 24f170ff72
3 changed files with 23 additions and 22 deletions
+1 -1
View File
@@ -62,7 +62,7 @@ class FetchTorrentsAction(BaseAction):
params = FetchTorrentsParams(**params)
if params.search_type == "keyword":
# 按关键字搜索
torrents = self.searchchain.search_by_title(title=params.name, sites=params.sites, cache_local=False)
torrents = self.searchchain.search_by_title(title=params.name, sites=params.sites)
for torrent in torrents:
if global_vars.is_workflow_stopped(workflow_id):
break