Skip to content

Commit 181f90b

Browse files
adaexclaude
andcommitted
feat: 精选放开 Succeed 过滤,仅保留 History 过滤
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 094b947 commit 181f90b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/fetch.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ function isCuratedQualified(name: string): boolean {
134134
if (mult !== 2 && mult !== 1) return false;
135135
const lossMatch = name.match(/\|(\d+)%/);
136136
if (lossMatch && parseInt(lossMatch[1], 10) > 10) return false;
137-
if (/\|(?:History|Succeed)/.test(name)) return false;
137+
if (/\|History/.test(name)) return false;
138138
return true;
139139
}
140140

0 commit comments

Comments
 (0)