Skip to content

Commit

Permalink
fix(oxauth): typo fix #1916 (version_4.5.3.sp1)
Browse files Browse the repository at this point in the history
  • Loading branch information
yuriyz committed Aug 7, 2024
1 parent 38b840c commit 0d5f4f0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,9 @@ private AuthorizationGrant validateAuthorization(String p_authorization, String
if (authorizationGrant == null) {
log.debug("Authorization grant is null.");
if (isTrue(pair.getSecond())) {
log.debug("Returned {\"active\":false.");
log.debug("Returned {\"active\":false}.");
throw new WebApplicationException(Response.status(Response.Status.OK)
.entity("{\"active\":false")
.entity("{\"active\":false}")
.type(MediaType.APPLICATION_JSON_TYPE)
.build());
}
Expand Down

0 comments on commit 0d5f4f0

Please sign in to comment.