make pretty condition more readable
This commit is contained in:
parent
ec8e271804
commit
e31c6b8b83
|
@ -137,11 +137,9 @@ func (s *HTTPServer) wrap(handler func(resp http.ResponseWriter, req *http.Reque
|
|||
return
|
||||
}
|
||||
|
||||
var prettyPrint bool
|
||||
prettyPrint := false
|
||||
if req.URL.Query().Get("pretty") == "true" {
|
||||
prettyPrint = true
|
||||
} else {
|
||||
prettyPrint = false
|
||||
}
|
||||
// Write out the JSON object
|
||||
if obj != nil {
|
||||
|
|
Loading…
Reference in New Issue