提交修改

This commit is contained in:
quyixiao 2025-04-12 23:51:58 +08:00
parent c73d6c7051
commit e248af6715

View File

@ -121,7 +121,8 @@ public class LogAop {
if (intercept && classMethodConfigNotIntercept) {
String authConfig = request.getHeader("X-TCloudMarket-Custom-AuthConfig");
if (StringUtils.isBlank(authConfig) || !authConfig.startsWith("{")) {
return R.error("auth error");
result = R.error("auth error");
return result;
}
Map<String, Object> authConfigMap = JSONObject.parseObject(authConfig, Map.class);