[#982] Removed ';' from request header

This commit is contained in:
Rsl1122 2019-03-26 20:49:01 +02:00
parent 4a5f4b80d1
commit 3ab6e31d85

View File

@ -104,7 +104,7 @@ public class RequestHandler implements HttpHandler {
// Authentication failed, but was not blocked
if (response instanceof PromptAuthorizationResponse) {
responseHeaders.set("WWW-Authenticate", response.getHeader("WWW-Authenticate").orElse("Basic realm=\"Plan WebUser (/plan register)\";"));
responseHeaders.set("WWW-Authenticate", response.getHeader("WWW-Authenticate").orElse("Basic realm=\"Plan WebUser (/plan register)\""));
}
response.setResponseHeaders(responseHeaders);