ffjson icon indicating copy to clipboard operation
ffjson copied to clipboard

*json.RawMessage as map value doesn't work

Open zplzpl opened this issue 7 years ago • 1 comments

type Aggs map[string]*json.RawMessage

ffjson error: (*errors.errorString)json.RawMessage: UnmarshalJSON on nil pointer offset=48212 line=1 char=48212

zplzpl avatar Oct 15 '17 13:10 zplzpl

Maybe try this until it gets fixed:

type Aggs map[string]json.RawMessage

Or do you really need it to be a pointer? Since json.RawMessage is just a []byte a pointer is usually not necessary.

erikdubbelboer avatar Oct 15 '17 13:10 erikdubbelboer