We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c98e9b commit 76c413bCopy full SHA for 76c413b
1 file changed
src/main/java/od/auth/JwtRequestFilter.java
@@ -37,7 +37,7 @@ public class JwtRequestFilter extends OncePerRequestFilter {
37
@Override
38
protected boolean shouldNotFilter(HttpServletRequest request) {
39
String path = request.getServletPath();
40
- return (path.startsWith("/lti") || path.contains("login"));
+ return (path.contentEquals("/") || path.startsWith("/lti") || path.contains("login"));
41
}
42
43
0 commit comments