Fixes issue 1566

See https://github.com/bisq-network/bisq-desktop/issues/1566
This commit is contained in:
Manfred Karrer 2018-06-05 23:11:16 +02:00
parent 35e5d82ece
commit b51d9a5a32
No known key found for this signature in database
GPG key ID: 401250966A6B2C46

View file

@ -713,6 +713,13 @@ public class MainViewModel implements ViewModel {
checkForCorruptedDataBaseFiles();
String bitcoinLocalhostNodeKey = "bitcoinLocalhostNode";
if (bisqEnvironment.isBitcoinLocalhostNodeRunning() && preferences.showAgain(bitcoinLocalhostNodeKey)) {
new Popup<>().backgroundInfo(Res.get("popup.bitcoinLocalhostNode.msg"))
.dontShowAgainId(bitcoinLocalhostNodeKey)
.show();
}
allBasicServicesInitialized = true;
}