[auth] Fix wrong parameter on AuthorizePageServlet (#3154)

Signed-off-by: Miguel Álvarez <miguelwork92@gmail.com>
pull/3160/head
GiviMAD 2022-11-13 11:08:58 +01:00 committed by GitHub
parent 440ce2eb6c
commit 06c0e90535
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ public class AuthorizePageServlet extends AbstractAuthPageServlet {
String baseRedirectUri = params.get("redirect_uri")[0];
String responseType = params.get("response_type")[0];
String clientId = params.get("redirect_uri")[0];
String clientId = params.get("client_id")[0];
String scope = params.get("scope")[0];
if (!"code".equals(responseType)) {