Skip to content

Commit

Permalink
Attempt to fix iOS http auth
Browse files Browse the repository at this point in the history
  • Loading branch information
AuroraLS3 committed May 24, 2018
1 parent 11519ff commit 8b67c73
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public void handle(HttpExchange exchange) {
Response response = responseHandler.getResponse(request);
responseCode = response.getCode();
if (response instanceof PromptAuthorizationResponse) {
responseHeaders.set("WWW-Authenticate", "Basic realm=\"/\";");
responseHeaders.set("WWW-Authenticate", "Basic realm=\"/\"");
}

response.setResponseHeaders(responseHeaders);
Expand Down

0 comments on commit 8b67c73

Please sign in to comment.