diff options
| -rw-r--r-- | client/client.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/client/client.go b/client/client.go index e18f686..5ff995d 100644 --- a/client/client.go +++ b/client/client.go @@ -871,9 +871,8 @@ func (c *Client) RenewSession(ck *cookie.Cookie) (err error) { } // The server has not been chosen yet, this means that we want to manually renew // TODO: is this needed? - if !c.FSM.InState(StateChosenServer) { + if !c.FSM.InState(StateLoadingServer) { c.FSM.GoTransition(StateLoadingServer) //nolint:errcheck - c.FSM.GoTransition(StateChosenServer) //nolint:errcheck } // update tokens in the end defer func() { |
