mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-09-05 07:27:15 +08:00
fix #5528
This commit is contained in:
+2
-2
@@ -567,7 +567,7 @@ class SearchChain(ChainBase):
|
|||||||
)
|
)
|
||||||
search_count += 1
|
search_count += 1
|
||||||
# 有结果则停止
|
# 有结果则停止
|
||||||
if torrents:
|
if not settings.SEARCH_MULTIPLE_NAME and torrents:
|
||||||
logger.info(f"共搜索到 {len(torrents)} 个资源,停止搜索")
|
logger.info(f"共搜索到 {len(torrents)} 个资源,停止搜索")
|
||||||
break
|
break
|
||||||
|
|
||||||
@@ -654,7 +654,7 @@ class SearchChain(ChainBase):
|
|||||||
}
|
}
|
||||||
|
|
||||||
search_count += 1
|
search_count += 1
|
||||||
if torrents:
|
if not settings.SEARCH_MULTIPLE_NAME and torrents:
|
||||||
logger.info(f"共搜索到 {len(torrents)} 个资源,停止搜索")
|
logger.info(f"共搜索到 {len(torrents)} 个资源,停止搜索")
|
||||||
break
|
break
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user