From 98bbc7e60a70fc030846fb16294d813af8131e3a Mon Sep 17 00:00:00 2001 From: jwijenbergh Date: Mon, 8 May 2023 16:32:32 +0200 Subject: Client FSM: Allow client to ask location in NoServer --- client/fsm.go | 1 + 1 file changed, 1 insertion(+) 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"}, }, -- cgit v1.2.3