Merge pull request #4648 from hyuan280/v2

This commit is contained in:
jxxghp
2025-07-23 15:09:05 +08:00
committed by GitHub
+2 -1
View File
@@ -156,8 +156,9 @@ class SiteSpider:
cats = self.category.get("movie") or [] cats = self.category.get("movie") or []
else: else:
cats = (self.category.get("movie") or []) + (self.category.get("tv") or []) cats = (self.category.get("movie") or []) + (self.category.get("tv") or [])
allowed_cats = set(self.cat.split(',')) if self.cat else None
for cat in cats: for cat in cats:
if self.cat and str(cat.get("id")) not in self.cat: if allowed_cats and str(cat.get('id')) not in allowed_cats:
continue continue
if self.category.get("field"): if self.category.get("field"):
value = params.get(self.category.get("field"), "") value = params.get(self.category.get("field"), "")