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)