fix npe force closing wallet on startup

This commit is contained in:
woodser 2024-07-23 08:03:36 -04:00 committed by GitHub
parent d8161cd6e2
commit bdcf8a2182
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1758,9 +1758,11 @@ public class XmrWalletService {
private void forceCloseMainWallet() {
stopPolling();
isClosingWallet = true;
forceCloseWallet(wallet, getWalletPath(MONERO_WALLET_NAME));
wallet = null;
if (wallet != null) {
isClosingWallet = true;
forceCloseWallet(wallet, getWalletPath(MONERO_WALLET_NAME));
wallet = null;
}
}
private void forceRestartMainWallet() {