sa两套鉴权合并为一套

This commit is contained in:
张松 2025-02-13 10:48:06 +08:00
parent c3a965a08a
commit 3b28e63d67
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ public class StpInterfaceImpl implements StpInterface {
return new ArrayList<>();
}
private static @Nullable List<String> getCashInfo(String key) {
private static List<String> getCashInfo(String key) {
Object value = StpKit.USER.getSession().get(key);
if (value instanceof List<?> list) {
return (List<String>) list;