Version: 2.5.7 Update

This commit is contained in:
gh0stkey
2023-11-13 08:28:44 +08:00
parent 87c5f713fa
commit 5cd216e45d
3 changed files with 120 additions and 30 deletions

View File

@@ -69,7 +69,7 @@ public class Databoard extends JPanel {
String cleanedHost = StringHelper.replaceFirstOccurrence(host, "*.", "");
if (host.contains("*")) {
ConfigEntry.globalDataMap.keySet().removeIf(i -> i.contains(cleanedHost) || cleanedHost.equals("**"));
ConfigEntry.globalDataMap.keySet().removeIf(i -> i.contains(cleanedHost) || cleanedHost.contains("*"));
} else {
ConfigEntry.globalDataMap.remove(host);
}