summaryrefslogtreecommitdiff
path: root/client/fsm.go
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2023-03-20 16:31:29 +0100
committerJeroen Wijenbergh <46386452+jwijenbergh@users.noreply.github.com>2023-09-25 09:43:37 +0200
commit30f6a4c9991b42ebade54221dbf7f9e0f20e94f4 (patch)
tree56e9be1fb98c6579a17a6aabea197b07a6c80467 /client/fsm.go
parent2388b826cc8c0507bc840a728d005450d91adf4b (diff)
Client: Remove servers argument to transition
Diffstat (limited to 'client/fsm.go')
-rw-r--r--client/fsm.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/fsm.go b/client/fsm.go
index d1d2d9e..9f140e3 100644
--- a/client/fsm.go
+++ b/client/fsm.go
@@ -180,7 +180,7 @@ func (c *Client) GoBack() error {
}
// FIXME: Arbitrary back transitions don't work because we need the appropriate data
- c.FSM.GoTransitionWithData(StateNoServer, c.Servers)
+ c.FSM.GoTransition(StateNoServer)
return nil
}