From f494f694c70576b4762e0e6f0cbf0941e7123cc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Fri, 7 Jul 2023 13:56:57 +0800 Subject: [PATCH] Fix multi error --- common/exceptions/multi.go | 1 + 1 file changed, 1 insertion(+) diff --git a/common/exceptions/multi.go b/common/exceptions/multi.go index a42f00c..a11a901 100644 --- a/common/exceptions/multi.go +++ b/common/exceptions/multi.go @@ -23,6 +23,7 @@ func (e *multiError) Unwrap() []error { func Errors(errors ...error) error { errors = common.FilterNotNil(errors) errors = ExpandAll(errors) + errors = common.FilterNotNil(errors) errors = common.UniqBy(errors, error.Error) switch len(errors) { case 0: