From 5ae8d274c078afc8d60766c0fc0325039e33af17 Mon Sep 17 00:00:00 2001 From: Xavier Michelon Date: Wed, 30 Nov 2022 08:14:30 +0100 Subject: [PATCH] Other: fix Warning introduced by connecting check timer. --- internal/frontend/bridge-gui/bridge-gui/qml/AccountDelegate.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/frontend/bridge-gui/bridge-gui/qml/AccountDelegate.qml b/internal/frontend/bridge-gui/bridge-gui/qml/AccountDelegate.qml index abdb2da3..b1e89d8c 100644 --- a/internal/frontend/bridge-gui/bridge-gui/qml/AccountDelegate.qml +++ b/internal/frontend/bridge-gui/bridge-gui/qml/AccountDelegate.qml @@ -155,7 +155,7 @@ Item { property string dots: "" interval: 250; repeat: true; - running: (root.user.state === EUserState.Locked) + running: root.user && (root.user.state === EUserState.Locked) onTriggered: { dots = dots + "." if (dots.length > 3)