Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
aeberhart committed Apr 11, 2024
1 parent da459a9 commit f0cc52d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public Object run(Object obj) throws Exception {
// UI logout out automatically if a 401 is encountered (use 500 instead)
if (response.code() == 401)
throw new WebApplicationException(
Response.status(500).entity("HTTP 401: Unauhtorized").build());
Response.status(500).entity("HTTP 401: Unauthorized").build());

String error = "" + response.body().string();
try {
Expand Down

0 comments on commit f0cc52d

Please sign in to comment.