From be9840c70ff38c03b730b347c9d0f4d1f1e195ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Wed, 8 Jan 2025 11:04:24 +0800 Subject: [PATCH] listable: Fix incorrect unmarshaling of null to []T{null} --- common/json/badoption/listable.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common/json/badoption/listable.go b/common/json/badoption/listable.go index df02217..c48df12 100644 --- a/common/json/badoption/listable.go +++ b/common/json/badoption/listable.go @@ -18,6 +18,9 @@ func (l Listable[T]) MarshalJSONContext(ctx context.Context) ([]byte, error) { } func (l *Listable[T]) UnmarshalJSONContext(ctx context.Context, content []byte) error { + if string(content) == "null" { + return nil + } var singleItem T err := json.UnmarshalContextDisallowUnknownFields(ctx, content, &singleItem) if err == nil {