aboutsummaryrefslogtreecommitdiffhomepage
path: root/http/response/json/json.go
diff options
context:
space:
mode:
Diffstat (limited to 'http/response/json/json.go')
-rw-r--r--http/response/json/json.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/http/response/json/json.go b/http/response/json/json.go
index ff0f06b..6f3eb15 100644
--- a/http/response/json/json.go
+++ b/http/response/json/json.go
@@ -9,14 +9,14 @@ import (
"errors"
"net/http"
+ "github.com/miniflux/miniflux/http/response"
"github.com/miniflux/miniflux/logger"
)
// OK sends a JSON response with the status code 200.
-func OK(w http.ResponseWriter, v interface{}) {
+func OK(w http.ResponseWriter, r *http.Request, v interface{}) {
commonHeaders(w)
- w.WriteHeader(http.StatusOK)
- w.Write(toJSON(v))
+ response.Compress(w, r, toJSON(v))
}
// Created sends a JSON response with the status code 201.