mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 04:17:38 +03:00
badjson: Remove empty JSON object in JSON object
This commit is contained in:
parent
d171f04941
commit
060edf2d69
1 changed files with 8 additions and 1 deletions
|
@ -4,8 +4,10 @@ import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
|
"github.com/sagernet/sing/common"
|
||||||
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"
|
||||||
|
"github.com/sagernet/sing/common/x/collections"
|
||||||
"github.com/sagernet/sing/common/x/linkedhashmap"
|
"github.com/sagernet/sing/common/x/linkedhashmap"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -16,7 +18,12 @@ type JSONObject struct {
|
||||||
func (m JSONObject) MarshalJSON() ([]byte, error) {
|
func (m JSONObject) MarshalJSON() ([]byte, error) {
|
||||||
buffer := new(bytes.Buffer)
|
buffer := new(bytes.Buffer)
|
||||||
buffer.WriteString("{")
|
buffer.WriteString("{")
|
||||||
items := m.Entries()
|
items := common.Filter(m.Entries(), func(it collections.MapEntry[string, any]) bool {
|
||||||
|
if valueObject, valueIsJSONObject := it.Value.(*JSONObject); valueIsJSONObject && valueObject.IsEmpty() {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
return true
|
||||||
|
})
|
||||||
iLen := len(items)
|
iLen := len(items)
|
||||||
for i, entry := range items {
|
for i, entry := range items {
|
||||||
keyContent, err := json.Marshal(entry.Key)
|
keyContent, err := json.Marshal(entry.Key)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue