This commit is contained in:
ddrwode
2026-03-06 15:16:23 +08:00
parent 9379b7bd47
commit b992c8ee70

View File

@@ -588,7 +588,9 @@ class BossRecruitHandler(BaseTaskHandler):
filters = params.get("selected_filters")
if filters is None:
filters = params.get("filters")
return self._normalize_string_list(filters)
normalized = self._normalize_string_list(filters)
# 过滤掉“不限”,防止使用原生的含文本匹配点到所有含有“不限”的默认筛选项
return [f for f in normalized if "不限" not in f]
@staticmethod
def _parse_positive_int(value: Any, default: int) -> int: