diff --git a/common/json/badoption/listable.go b/common/json/badoption/listable.go index df02217..3d210e4 100644 --- a/common/json/badoption/listable.go +++ b/common/json/badoption/listable.go @@ -2,7 +2,6 @@ package badoption import ( "context" - E "github.com/sagernet/sing/common/exceptions" "github.com/sagernet/sing/common/json" ) @@ -18,6 +17,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 {