diff --git a/src/cutecoin/core/app.py b/src/cutecoin/core/app.py index e68b9c2887a245d9ffcab298ff102fd3c64f6f6b..4c4af5b9415464252def998870da8b3b15655595 100644 --- a/src/cutecoin/core/app.py +++ b/src/cutecoin/core/app.py @@ -99,7 +99,8 @@ class Application(QObject): self.loading_progressed.emit(value, maximum) if self.current_account is not None: - self.monitor.stop_watching() + if self.monitor: + self.monitor.stop_watching() self.save_cache(self.current_account) account.loading_progressed.connect(progressing) account.refresh_cache()