Skip to content

Instantly share code, notes, and snippets.

@kevholditch
Created July 31, 2018 18:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kevholditch/57d2d58890d450f562cd73c115c03dae to your computer and use it in GitHub Desktop.
Save kevholditch/57d2d58890d450f562cd73c115c03dae to your computer and use it in GitHub Desktop.
json deserialisation broken first try
func (a *Api) UnmarshalJSON(data []byte) error {
fixedJson := strings.Replace(string(data), `"hosts":{}`, `"hosts":[]`, -1)
fixedJson = strings.Replace(fixedJson, `"uris":{}`, `"uris":[]`, -1)
fixedJson = strings.Replace(fixedJson, `"methods":{}`, `"methods":[]`, -1)
return json.Unmarshal([]byte(fixedJson), &a)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment