fix equals

This commit is contained in:
okx-code
2025-11-10 23:21:47 +00:00
parent d9cebe2adf
commit b79390c6cf

View File

@@ -33,7 +33,7 @@ public class PatreonHandler extends RabbitInput {
String tier = input.get(key).getAsString();
String group = this.groups.get(tier);
if (cache.get(uuid).equals(group == null ? "" : group)) {
if ((group == null ? "" : group).equals(cache.get(uuid))) {
continue;
}