Updated to latest Protocol Version

This commit is contained in:
UnlegitDqrk
2026-02-22 18:21:18 +01:00
parent 4376fe6daa
commit b6f7110d16
4 changed files with 172 additions and 172 deletions

View File

@@ -48,8 +48,8 @@ public record InsEndpoint(String host, int port) {
@Override
public boolean equals(Object o) {
if (!(o instanceof InsEndpoint other)) return false;
return host.equalsIgnoreCase(other.host) && port == other.port;
if (!(o instanceof InsEndpoint(String host1, int port1))) return false;
return host.equalsIgnoreCase(host1) && port == port1;
}
@Override