Fix exact search (#8357)

This commit is contained in:
Eradev
2025-08-13 04:46:47 -04:00
committed by GitHub
parent 8ccebbc13c
commit 10a68d63a1
2 changed files with 2 additions and 1 deletions

View File

@@ -43,7 +43,7 @@ public abstract class AdvancedSearchParser {
}
String key = token.substring(0, index).trim().toLowerCase();
String valueStr = token.substring(index + opUsed.length()).trim().toLowerCase();
String valueStr = token.substring(index + opUsed.length()).toLowerCase();
boolean creatureOnly = false;
Predicate<CardRules> predicate = null;

View File

@@ -81,6 +81,7 @@ public class SFilterUtil {
if (ch == '"') {
inQuotes = !inQuotes;
current.append(ch);
continue;
}