Skip to content

Commit fa861a7

Browse files
Fix missing line.
1 parent b369a2d commit fa861a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ func (s *Server) ValidationTokenRequest(r *http.Request) (oauth2.GrantType, *oau
357357
return "", nil, errors.ErrInvalidRequest
358358
}
359359

360-
userID, err := s.PasswordAuthorizationHandler(r.Context(), username, password, clientID)
360+
userID, err := s.PasswordAuthorizationHandler(r.Context(), clientID, username, password)
361361
if err != nil {
362362
return "", nil, err
363363
} else if userID == "" {

0 commit comments

Comments
 (0)