Browse Source

Fix migration of old connector data

pull/1180/head
Joel Speed 7 years ago
parent
commit
c4e96dda32
No known key found for this signature in database
GPG Key ID: 6E80578D6751DEFB
  1. 2
      server/handlers.go

2
server/handlers.go

@ -1008,7 +1008,7 @@ func (s *Server) handleRefreshToken(w http.ResponseWriter, r *http.Request, clie
}
} else if len(refresh.ConnectorData) > 0 {
// Use the old connector data if it exists, should be deleted once used
connectorData = session.ConnectorData
connectorData = refresh.ConnectorData
} else {
connectorData = session.ConnectorData
}

Loading…
Cancel
Save