fix(commandline): manual mode being broken

closes #5339
This commit is contained in:
Miodec 2024-04-27 01:24:02 +02:00
parent 607da30faa
commit 6abf0aa9b2

View file

@ -266,8 +266,8 @@ async function filterSubgroup(): Promise<void> {
continue;
}
if (
match.matchCount === minMatchCountToShow &&
match.matchStrength === maxMatchStrength
match.matchCount >= minMatchCountToShow &&
match.matchStrength >= maxMatchStrength
) {
command.found = true;
} else {