This commit is contained in:
m2049r 2019-06-18 08:48:28 +02:00 committed by GitHub
parent 2774f99b15
commit f7cef24a83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -290,7 +290,7 @@ public class WalletService extends Service {
showProgress(10);
Wallet.Status walletStatus = start(walletId, walletPw);
if (observer != null) observer.onWalletStarted(walletStatus);
if (!walletStatus.isOk()) {
if ((walletStatus == null) || !walletStatus.isOk()) {
errorState = true;
stop();
}