aboutsummaryrefslogtreecommitdiffhomepage
path: root/ui/static_manifest.go
diff options
context:
space:
mode:
authorGravatar Frédéric Guillot <fred@miniflux.net>2018-07-19 19:27:05 -0700
committerGravatar Frédéric Guillot <fred@miniflux.net>2018-07-19 19:27:05 -0700
commit9f6533ece90c6b528dd0af6f1b6dec4a7fa2fa3b (patch)
tree59349657a1d5a700abab38332d4e7240533ab4d3 /ui/static_manifest.go
parenta291d8a38b40569fdd1f00125ca0b29e4b9264f2 (diff)
Compress JSON, CSS and Javascript responses
Diffstat (limited to 'ui/static_manifest.go')
-rw-r--r--ui/static_manifest.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/static_manifest.go b/ui/static_manifest.go
index 27abaec..96814fe 100644
--- a/ui/static_manifest.go
+++ b/ui/static_manifest.go
@@ -50,5 +50,5 @@ func (c *Controller) WebManifest(w http.ResponseWriter, r *http.Request) {
},
}
- json.OK(w, manifest)
+ json.OK(w, r, manifest)
}