Skip to content

Commit

Permalink
fix: fix typo from last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
porcellus committed Oct 23, 2024
1 parent fd17adb commit ac3cf84
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 ac3cf84

Please sign in to comment.