aboutsummaryrefslogtreecommitdiffhomepage
path: root/http/response/html/html.go
diff options
context:
space:
mode:
Diffstat (limited to 'http/response/html/html.go')
-rw-r--r--http/response/html/html.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/http/response/html/html.go b/http/response/html/html.go
index 4f605e8..a17ce04 100644
--- a/http/response/html/html.go
+++ b/http/response/html/html.go
@@ -7,13 +7,14 @@ package html
import (
"net/http"
+ "github.com/miniflux/miniflux/http/response"
"github.com/miniflux/miniflux/logger"
)
// OK writes a standard HTML response.
-func OK(w http.ResponseWriter, b []byte) {
+func OK(w http.ResponseWriter, r *http.Request, b []byte) {
w.Header().Set("Content-Type", "text/html; charset=utf-8")
- w.Write(b)
+ response.Compress(w, r, b)
}
// ServerError sends a 500 error to the browser.