Skip to content
Snippets Groups Projects
Unverified Commit c4e96dda authored by Joel Speed's avatar Joel Speed
Browse files

Fix migration of old connector data

parent d9095073
No related branches found
No related tags found
No related merge requests found
...@@ -1008,7 +1008,7 @@ func (s *Server) handleRefreshToken(w http.ResponseWriter, r *http.Request, clie ...@@ -1008,7 +1008,7 @@ func (s *Server) handleRefreshToken(w http.ResponseWriter, r *http.Request, clie
} }
} else if len(refresh.ConnectorData) > 0 { } else if len(refresh.ConnectorData) > 0 {
// Use the old connector data if it exists, should be deleted once used // Use the old connector data if it exists, should be deleted once used
connectorData = session.ConnectorData connectorData = refresh.ConnectorData
} else { } else {
connectorData = session.ConnectorData connectorData = session.ConnectorData
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment