Compare commits

...

1 commit

Author SHA1 Message Date
世界
db8125ebef
listable: Fix incorrect unmarshaling of null to []T{null} 2025-01-08 11:04:24 +08:00

View file

@ -2,6 +2,7 @@ package badoption
import (
"context"
"slices"
E "github.com/sagernet/sing/common/exceptions"
"github.com/sagernet/sing/common/json"
@ -18,6 +19,9 @@ func (l Listable[T]) MarshalJSONContext(ctx context.Context) ([]byte, error) {
}
func (l *Listable[T]) UnmarshalJSONContext(ctx context.Context, content []byte) error {
if slices.Equal(content, []byte("null")) {
return nil
}
var singleItem T
err := json.UnmarshalContextDisallowUnknownFields(ctx, content, &singleItem)
if err == nil {