mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-06 07:12:00 +08:00
!10 修复 匿名用户会被鉴定为anonymousUser
Merge pull request !10 from niu_dehua/fix_login
This commit is contained in:
@ -56,7 +56,7 @@ public class SecurityFrameworkUtils {
|
||||
if (authentication == null) {
|
||||
return null;
|
||||
}
|
||||
return (LoginUser) authentication.getPrincipal();
|
||||
return authentication.getPrincipal() instanceof LoginUser ? (LoginUser) authentication.getPrincipal() : null;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user