浏览代码

Revert wrong fix

pull/54/head
父节点
当前提交
fb39d30ecb
共有 1 个文件被更改,包括 1 次插入1 次删除
  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 查看文件

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


正在加载...
取消
保存