From aeb1f4bcbfebb00ee02564d7ba66f010cf247432 Mon Sep 17 00:00:00 2001 From: jwijenbergh Date: Tue, 13 Jun 2023 14:13:38 +0200 Subject: Client FSM: Allow self-transition to No Server --- client/fsm.go | 1 + 1 file changed, 1 insertion(+) diff --git a/client/fsm.go b/client/fsm.go index 0ae5ca2..dbaa0f9 100644 --- a/client/fsm.go +++ b/client/fsm.go @@ -107,6 +107,7 @@ func newFSM( }, StateNoServer: FSMState{ Transitions: []FSMTransition{ + {To: StateNoServer, Description: "Reload list"}, {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