Ver código fonte

Revert wrong fix

pull/54/head
Kristijan Mitrovic 4 anos atrás
pai
commit
fb39d30ecb
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      bubble-server/src/main/java/bubble/service/account/StandardSyncAccountService.java

+ 1
- 1
bubble-server/src/main/java/bubble/service/account/StandardSyncAccountService.java Ver arquivo

@@ -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;
}


Carregando…
Cancelar
Salvar