|
@@ -21,7 +21,7 @@ public class PermissionCheckService {
|
|
|
|
|
|
for (String perm : permissions) {
|
|
|
for (GrantedAuthority authority : authorities) {
|
|
|
- if (StringUtils.equals(perm, authority.getAuthority())) {
|
|
|
+ if (StringUtils.equalsIgnoreCase(perm, authority.getAuthority())) {
|
|
|
return true;
|
|
|
}
|
|
|
}
|