Other: fix Warning introduced by connecting check timer.

This commit is contained in:
Xavier Michelon
2022-11-30 08:14:30 +01:00
parent 6402894096
commit 5ae8d274c0

View File

@ -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)