Skip to content

Commit

Permalink
Fix...
Browse files Browse the repository at this point in the history
  • Loading branch information
dviskovic committed Mar 29, 2023
1 parent 7202eb0 commit 37f6f57
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
Cookie cookie = new Cookie("temp-jwt-token", jwt);
cookie.setPath("/");
response.addCookie(cookie);
response.sendRedirect(piosProperties.frontendUrl());
response.sendRedirect(piosProperties.frontendUrl() + "/");
}
});

Expand Down

0 comments on commit 37f6f57

Please sign in to comment.