summaryrefslogtreecommitdiff
path: root/src/fsm.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/fsm.go')
-rw-r--r--src/fsm.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fsm.go b/src/fsm.go
index fa2a5c4..0ed7a37 100644
--- a/src/fsm.go
+++ b/src/fsm.go
@@ -141,7 +141,7 @@ func (eduvpn *VPNState) InitializeFSM() {
NO_SERVER: {{CHOSEN_SERVER, "User chooses a server"}},
CHOSEN_SERVER: {{AUTHENTICATED, "Found tokens in config"}, {OAUTH_STARTED, "No tokens found in config"}},
OAUTH_STARTED: {{AUTHENTICATED, "User authorizes with browser"}},
- AUTHENTICATED: {{CONNECTED, "OS reports connected"}},
+ AUTHENTICATED: {{CONNECTED, "OS reports connected"}, {OAUTH_STARTED, "Re-authenticate with OAuth"}},
CONNECTED: {{AUTHENTICATED, "OS reports disconnected"}},
},
Current: DEREGISTERED,