mirror of
https://github.com/ProtonMail/proton-bridge.git
synced 2025-12-10 04:36:43 +00:00
Other: fix Warning introduced by connecting check timer.
This commit is contained in:
@ -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)
|
||||
|
||||
Reference in New Issue
Block a user