From 980a4c3a4da56e2ae7edd9f29e6ab9790d23a8b6 Mon Sep 17 00:00:00 2001 From: Serge Tupchii Date: Mon, 11 Mar 2024 10:40:19 +0200 Subject: [PATCH] fix(emqx_mgmt_api): use emqx_utils:bin_to_hexstr/2 --- apps/emqx_management/src/emqx_mgmt_api.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/emqx_management/src/emqx_mgmt_api.erl b/apps/emqx_management/src/emqx_mgmt_api.erl index abb4e18d5..69081fbf1 100644 --- a/apps/emqx_management/src/emqx_mgmt_api.erl +++ b/apps/emqx_management/src/emqx_mgmt_api.erl @@ -162,7 +162,7 @@ encode_continuation(end_of_data, _Encoding) -> encode_continuation(Cont, ?URL_PARAM_INTEGER) -> integer_to_binary(Cont); encode_continuation(Cont, ?URL_PARAM_BINARY) -> - emqx_utils:bin_to_hexstr(Cont). + emqx_utils:bin_to_hexstr(Cont, lower). %%-------------------------------------------------------------------- %% Node Query