Images and login context (#1417)

* init

* revert
This commit is contained in:
Anthony Stirling
2024-06-08 16:07:23 +01:00
committed by GitHub
parent 10472a6467
commit ef59ea6fe4
10 changed files with 8 additions and 5 deletions
@@ -58,7 +58,8 @@ public class CleanUrlInterceptor implements HandlerInterceptor {
// Redirect to the URL with only allowed query parameters
String redirectUrl = requestURI + "?" + newQueryString;
response.sendRedirect(redirectUrl);
response.sendRedirect(request.getContextPath() + redirectUrl);
return false;
}
}