mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 12:27:37 +03:00
listable: Fix incorrect unmarshaling of null to []T{null}
This commit is contained in:
parent
aa7d2543a3
commit
026d9493a7
1 changed files with 3 additions and 1 deletions
|
@ -2,7 +2,6 @@ package badoption
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
|
||||||
E "github.com/sagernet/sing/common/exceptions"
|
E "github.com/sagernet/sing/common/exceptions"
|
||||||
"github.com/sagernet/sing/common/json"
|
"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 {
|
func (l *Listable[T]) UnmarshalJSONContext(ctx context.Context, content []byte) error {
|
||||||
|
if string(content) == "null" {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
var singleItem T
|
var singleItem T
|
||||||
err := json.UnmarshalContextDisallowUnknownFields(ctx, content, &singleItem)
|
err := json.UnmarshalContextDisallowUnknownFields(ctx, content, &singleItem)
|
||||||
if err == nil {
|
if err == nil {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue