broadcast receive fix 2

This commit is contained in:
2024-06-22 17:46:09 +02:00
parent 6e71bf77db
commit e67b0380dc

View File

@@ -128,7 +128,7 @@ public class RemoteHostManager {
}
public void notifyAddr(UUID host, String addr, Integer port) {
if (persistentRemoteHostsService.existsHost(host)) {
if (!persistentRemoteHostsService.existsHost(host)) {
Log.info("Ignoring new address from unknown host " + ": addr=" + addr + " port=" + port);
return;
}