This commit is contained in:
Zachary Gershman 2018-02-23 08:24:05 -08:00
Родитель 9c1eeb9faf
Коммит 6606c0b63a
1 изменённых файлов: 0 добавлений и 2 удалений

Просмотреть файл

@ -224,10 +224,8 @@ func listHandler(w http.ResponseWriter, r *http.Request) {
if r.URL.Query().Get("mode") == "json" {
w.Header().Set("Content-Type", "application/json")
enc := json.NewEncoder(w)
enc.SetIndent("", " ")
if err := enc.Encode(d.Stable); err != nil {
log.Errorf(c, "failed rendering JSON for releases: %v", err)
}