aboutsummaryrefslogtreecommitdiff
path: root/main.qml
diff options
context:
space:
mode:
authorrating89us <45968869+rating89us@users.noreply.github.com>2021-12-10 11:03:37 +0100
committerGitHub <noreply@github.com>2021-12-10 11:03:37 +0100
commit008a38aae2b043d92dea72f1daab804b1eb70373 (patch)
treea1d47dc51847fdb44b2aeac3bbf83d6e6a1b37d5 /main.qml
parentbddb9b0050ee086da5c7ee7fdb3627e0dff9f179 (diff)
downloadmonzero-gui-008a38aae2b043d92dea72f1daab804b1eb70373.tar.gz
monzero-gui-008a38aae2b043d92dea72f1daab804b1eb70373.tar.xz
monzero-gui-008a38aae2b043d92dea72f1daab804b1eb70373.zip
main: verify if currentWallet is loaded before calling it
Diffstat (limited to 'main.qml')
-rw-r--r--main.qml12
1 files changed, 8 insertions, 4 deletions
diff --git a/main.qml b/main.qml
index af28f2c1..f856539a 100644
--- a/main.qml
+++ b/main.qml
@@ -730,14 +730,18 @@ ApplicationWindow {
function onDaemonStarted(){
console.log("daemon started");
daemonStartStopInProgress = 0;
- currentWallet.connected(true);
- // resume refresh
- currentWallet.startRefresh();
+ if (currentWallet) {
+ currentWallet.connected(true);
+ // resume refresh
+ currentWallet.startRefresh();
+ }
// resume simplemode connection timer
appWindow.disconnectedEpoch = Utils.epoch();
}
function onDaemonStopped(){
- currentWallet.connected(true);
+ if (currentWallet) {
+ currentWallet.connected(true);
+ }
}
function onDaemonStartFailure(error) {