Skip to content

Commit

Permalink
fix: JSON Inetarray (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
hermanschaaf authored Jan 31, 2023
1 parent 2b06a7a commit d008c13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion json/transformer.go
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ func (Transformer) TransformInetArray(v *schema.InetArray) any {
for i, e := range v.Elements {
res[i] = e.String()
}
return v.String()
return res
}

func (Transformer) TransformMacaddr(v *schema.Macaddr) any {
Expand Down

0 comments on commit d008c13

Please sign in to comment.