[bugfix] Fix using wrong key for clientID during oauth callback (#2101)

This commit is contained in:
tobi 2023-08-11 14:58:47 +02:00 committed by GitHub
parent dc96562b40
commit dc99e9e10b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -107,7 +107,7 @@ func (m *Module) CallbackGETHandler(c *gin.Context) {
return
}
app, err := m.db.GetApplicationByClientID(c.Request.Context(), sessionClientID)
app, err := m.db.GetApplicationByClientID(c.Request.Context(), clientID)
if err != nil {
m.clearSession(s)
safe := fmt.Sprintf("application for %s %s could not be retrieved", sessionClientID, clientID)