fix: セッションが存在しない時にエラーが出る問題を修正

This commit is contained in:
usbharu 2024-09-08 23:01:19 +09:00
parent 5eb3bc3704
commit 7665286270
Signed by: usbharu
GPG Key ID: 6556747BF94EEBC8
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ class SPAInterceptor : HandlerInterceptor {
return
}
if (request.getSession(false).getAttribute("s") == "f") {
if (request.getSession(false)?.getAttribute("s") == "f") {
return
}