1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-03 19:24:24 +08:00

Fix exclusion filters filtering out empty strings

This commit is contained in:
Bartłomiej Dach
2025-10-13 11:39:38 +02:00
Unverified
parent f8d3285ab4
commit a3f635588c
+1 -1
View File
@@ -205,7 +205,7 @@ namespace osu.Game.Screens.Select
// search term is guaranteed to be non-empty, so if the string we're comparing is empty, it's not matching
if (string.IsNullOrEmpty(value))
return false;
return ExcludeTerm;
bool result;