followup to public server change on wallet history failure

This commit is contained in:
Craig Raw 2021-04-28 11:46:46 +02:00
parent 6f5ee7c695
commit ec918b78ed

View file

@ -717,9 +717,9 @@ public class AppServices {
@Subscribe
public void walletHistoryFailed(WalletHistoryFailedEvent event) {
if(Config.get().getServerType() == ServerType.PUBLIC_ELECTRUM_SERVER && connectionService != null && connectionService.isRunning()) {
if(Config.get().getServerType() == ServerType.PUBLIC_ELECTRUM_SERVER && isConnected()) {
onlineProperty.set(false);
log.info("Connection to " + Config.get().getServerAddress() + " failed, reconnecting to another server...");
log.info("Failed to fetch wallet history from " + Config.get().getServerAddress() + ", reconnecting to another server...");
Config.get().changePublicServer();
onlineProperty.set(true);
}