feat: 修复获取登陆信息错误

This commit is contained in:
zengxiaobo 2024-07-10 19:58:45 +08:00
parent 65ce48ddb8
commit cd6a5e4e72

View File

@ -96,7 +96,7 @@ public class AxContextInterceptor implements HandlerInterceptor {
try { try {
result = HTTP_CLIENT.get(supplierUrl, RequestParams.FormParams.builder() result = HTTP_CLIENT.get(supplierUrl, RequestParams.FormParams.builder()
.headers(ImmutableMap.of("Authorization", authorization, .headers(ImmutableMap.of("Authorization", authorization,
"terminal", request.getHeader("terminal"))) "terminal", Strings.nullToEmpty(request.getHeader("terminal"))))
.logEnable(true) .logEnable(true)
.build()); .build());
} catch (Exception ex) { } catch (Exception ex) {