Fix dump function

This commit is contained in:
p4u
2019-02-11 18:17:00 +01:00
parent c258a9ad9c
commit 6d3bf7c18d
2 changed files with 6 additions and 22 deletions

View File

@@ -189,7 +189,7 @@ func claimHandler(w http.ResponseWriter, req *http.Request, op string) {
resp.Error = true
resp.Response = err.Error()
} else {
resp.Response = string(jValues)
resp.Response = fmt.Sprintf("%s", jValues)
}
}
}