summaryrefslogtreecommitdiff
path: root/client/fsm.go
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2023-06-05 10:52:30 +0200
committerJeroen Wijenbergh <46386452+jwijenbergh@users.noreply.github.com>2023-09-25 09:43:37 +0200
commit9eb617e326f6754d2634b4409defc66c2e710946 (patch)
tree1b88e3a536bddf131ccfa098e79dca0638587a69 /client/fsm.go
parenteee70ef464f8108aa2306c6664b5517044dbb517 (diff)
Client FSM: Add loading server to authorized
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 9672579..0ae5ca2 100644
--- a/client/fsm.go
+++ b/client/fsm.go
@@ -156,6 +156,7 @@ func newFSM(
Transitions: []FSMTransition{
{To: StateOAuthStarted, Description: "Re-authorize with OAuth"},
{To: StateRequestConfig, Description: "Client requests a config"},
+ {To: StateLoadingServer, Description: "Load the server again"},
{To: StateNoServer, Description: "Go back or Error"},
{To: StateGotConfig, Description: "Go back or Error"},
},