summaryrefslogtreecommitdiff
path: root/client/fsm.go
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2023-05-08 16:32:32 +0200
committerJeroen Wijenbergh <46386452+jwijenbergh@users.noreply.github.com>2023-09-25 09:43:37 +0200
commit98bbc7e60a70fc030846fb16294d813af8131e3a (patch)
tree401adb4f871c2dfbd1d8bc197b793e46e56bd18c /client/fsm.go
parentb7f86c83fffc221e654048e6e55c3f130c9fd308 (diff)
Client FSM: Allow client to ask location in NoServer
Diffstat (limited to 'client/fsm.go')
-rw-r--r--client/fsm.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/client/fsm.go b/client/fsm.go
index 4d8dd7d..9672579 100644
--- a/client/fsm.go
+++ b/client/fsm.go
@@ -107,6 +107,7 @@ func newFSM(
},
StateNoServer: FSMState{
Transitions: []FSMTransition{
+ {To: StateAskLocation, Description: "The client wants to ask for a location on the main screen"},
{To: StateLoadingServer, Description: "User clicks a server in the UI"},
{To: StateConnected, Description: "The VPN is still active"},
},