Skip to content
Snippets Groups Projects
Commit c349b1e5 authored by srosse's avatar srosse
Browse files

OO-38: only set once 401 in the WebService and not in the filter

parent bad217cf
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,6 @@ package org.olat.restapi.security;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Enumeration;
import java.util.List;
import java.util.StringTokenizer;
......@@ -227,10 +226,6 @@ public class RestApiLoginFilter implements Filter {
request.setAttribute(RestSecurityHelper.SEC_USER_REQUEST, ureq);
chain.doFilter(request, response);
if(ureq.getIdentity() == null) {
//login is not successful
response.sendError(401);
}
}
private void followWithoutAuthentication(HttpServletRequest request, HttpServletResponse response, FilterChain chain)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment