mirror of https://github.com/usbharu/Hideout.git
fix: セッションが存在しない時にエラーが出る問題を修正
This commit is contained in:
parent
5eb3bc3704
commit
7665286270
|
@ -29,7 +29,7 @@ class SPAInterceptor : HandlerInterceptor {
|
|||
return
|
||||
}
|
||||
|
||||
if (request.getSession(false).getAttribute("s") == "f") {
|
||||
if (request.getSession(false)?.getAttribute("s") == "f") {
|
||||
return
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue