From 937a8278a821fe517d22841f199b89a022ac732e Mon Sep 17 00:00:00 2001 From: hailaz <739476267@qq.com> Date: Fri, 14 Mar 2025 15:17:47 +0800 Subject: [PATCH] fix(net/ghttp): handle error from RegisterTypeConverterFunc in init function --- net/ghttp/ghttp_request_param_file.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/ghttp/ghttp_request_param_file.go b/net/ghttp/ghttp_request_param_file.go index 7122fd6af..a877b0072 100644 --- a/net/ghttp/ghttp_request_param_file.go +++ b/net/ghttp/ghttp_request_param_file.go @@ -25,7 +25,7 @@ import ( // init initializes the type converters for *UploadFile. func init() { - gconv.RegisterTypeConverterFunc(stringToUploadFile) + _ = gconv.RegisterTypeConverterFunc(stringToUploadFile) } // UploadFile wraps the multipart uploading file with more and convenient features.