diff options
Diffstat (limited to 'gui/components/VPNState.qml')
-rw-r--r-- | gui/components/VPNState.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/components/VPNState.qml b/gui/components/VPNState.qml index 189fd0b..64a109a 100644 --- a/gui/components/VPNState.qml +++ b/gui/components/VPNState.qml @@ -20,7 +20,7 @@ StateGroup { name: initializing }, State { - when: ctx && ctx.status == "off" && startingUI == true + when: ctx != undefined && ctx.status == "off" && startingUI == true PropertyChanges { target: connectionState text: qsTr("Connecting") |