aboutsummaryrefslogtreecommitdiffhomepage
path: root/ui/about.go
diff options
context:
space:
mode:
authorGravatar Frédéric Guillot <fred@miniflux.net>2018-07-06 20:39:28 -0700
committerGravatar Frédéric Guillot <fred@miniflux.net>2018-07-06 20:39:28 -0700
commit34a3fe426b33a63f2d8e02d4a70c88f137fa5410 (patch)
tree108ea6897543f2119747da1ef900d55253881e2c /ui/about.go
parent53deb0b8cd1899ec325eca93631b3e137bdd3ec3 (diff)
Compress HTML responses to Gzip/Deflate if supported by browser
Diffstat (limited to 'ui/about.go')
-rw-r--r--ui/about.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/about.go b/ui/about.go
index 7618e01..9a2bcfb 100644
--- a/ui/about.go
+++ b/ui/about.go
@@ -32,5 +32,5 @@ func (c *Controller) About(w http.ResponseWriter, r *http.Request) {
view.Set("user", user)
view.Set("countUnread", c.store.CountUnreadEntries(user.ID))
- html.OK(w, view.Render("about"))
+ html.OK(w, r, view.Render("about"))
}