From b5f2821925da1d527251aa3fbe3da228c2a05192 Mon Sep 17 00:00:00 2001 From: EstrellaXD Date: Thu, 27 Apr 2023 17:49:50 +0800 Subject: [PATCH] Fix eps_complete.py --- src/module/manager/eps_complete.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/module/manager/eps_complete.py b/src/module/manager/eps_complete.py index f7e355ee..5f3cf412 100644 --- a/src/module/manager/eps_complete.py +++ b/src/module/manager/eps_complete.py @@ -36,7 +36,7 @@ class FullSeasonGet: keyword = self.init_eps_complete_search_str(data) with RequestContent() as req: torrents = req.get_torrents(f"{CUSTOM_URL}/RSS/Search?searchstr={keyword}") - return [torrent for torrent in torrents if data.title_raw in torrent.title] + return [torrent for torrent in torrents if data.title_raw in torrent.name] @staticmethod def collect_season_torrents(data: BangumiData, torrents):