Skip to content

Commit

Permalink
Merge branch 'feat/oauth/remaining-changes' into feat/oauth/allow-list
Browse files Browse the repository at this point in the history
  • Loading branch information
tamassoltesz committed Oct 23, 2024
2 parents 11229d9 + ac3cf84 commit 170dac6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws I
String[] parsedHeader = Utils.convertFromBase64(authorizationHeader.replaceFirst("^Basic ", "").trim()).split(":");
clientId = parsedHeader[0];
} else {
clientId = InputParser.parseStringOrThrowError(input, formFields.get("client_id"), false);
clientId = formFields.get("client_id");
}

try {
Expand Down

0 comments on commit 170dac6

Please sign in to comment.