diff --git a/bubble-server/src/main/java/bubble/service/account/StandardSyncAccountService.java b/bubble-server/src/main/java/bubble/service/account/StandardSyncAccountService.java index e196d05f..aaaa0057 100644 --- a/bubble-server/src/main/java/bubble/service/account/StandardSyncAccountService.java +++ b/bubble-server/src/main/java/bubble/service/account/StandardSyncAccountService.java @@ -60,7 +60,7 @@ public class StandardSyncAccountService implements SyncAccountService { if (network.getState() != BubbleNetworkState.running) continue; if (!network.syncAccount()) continue; for (BubbleNode node : nodeDAO.findByNetwork(network.getUuid())) { - if (node.getUuid().equals(thisNetwork.getUuid())) { + if (node.getUuid().equals(configuration.getThisNode().getUuid())) { log.info("sync: not notifying self"); continue; }