mirror of https://github.com/usbharu/Hideout.git
fix: セッションが存在しない時に作成しないように
This commit is contained in:
parent
d4aaad3fb6
commit
8c3ff077d8
|
@ -29,7 +29,7 @@ class SPAInterceptor : HandlerInterceptor {
|
|||
return
|
||||
}
|
||||
|
||||
if (request.session.getAttribute("s") == "f") {
|
||||
if (request.getSession(false).getAttribute("s") == "f") {
|
||||
return
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue