From 591aa990a68c0d15cdaf2601c2bae0e33f4b0d76 Mon Sep 17 00:00:00 2001 From: YuF-9468 <264538812+YuF-9468@users.noreply.github.com> Date: Thu, 12 Mar 2026 09:27:31 +0800 Subject: [PATCH] fix(search): call match_season_episodes via class to avoid bound-arg conflict --- app/chain/search.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/chain/search.py b/app/chain/search.py index 58d3c001..c24d6cfc 100644 --- a/app/chain/search.py +++ b/app/chain/search.py @@ -280,7 +280,7 @@ class SearchChain(ChainBase): logger.info(f"种子名称应用识别词后发生改变:{torrent.title} => {torrent_meta.org_string}") # 季集数过滤 if season_episodes \ - and not torrenthelper.match_season_episodes(torrent=torrent, + and not TorrentHelper.match_season_episodes(torrent=torrent, meta=torrent_meta, season_episodes=season_episodes): continue