Correct crash when you try to access to rank without logged
This commit is contained in:
parent
49f796fe34
commit
dea2ceacb6
@ -153,7 +153,7 @@ public class GeneralWebView {
|
|||||||
|
|
||||||
|
|
||||||
@RequestMapping("/rank")
|
@RequestMapping("/rank")
|
||||||
public String login(Model model, @CookieValue(value = "token") String token, @CookieValue(value = "guild", defaultValue = "") String cookieGuildId, @RequestParam(value = "guild", defaultValue = "") String praramGuildId){
|
public String login(Model model, @CookieValue(value = "token",defaultValue = "1") String token, @CookieValue(value = "guild", defaultValue = "") String cookieGuildId, @RequestParam(value = "guild", defaultValue = "") String praramGuildId){
|
||||||
model.addAttribute("redirect_url", System.getenv("OAUTH_URL"));
|
model.addAttribute("redirect_url", System.getenv("OAUTH_URL"));
|
||||||
try {
|
try {
|
||||||
UserEntity userEntity = userUtils.getUserWithApiToken(userRepository, token);
|
UserEntity userEntity = userUtils.getUserWithApiToken(userRepository, token);
|
||||||
|
Loading…
Reference in New Issue
Block a user