aboutsummaryrefslogtreecommitdiffhomepage
path: root/ui/integration_show.go
diff options
context:
space:
mode:
Diffstat (limited to 'ui/integration_show.go')
-rw-r--r--ui/integration_show.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/integration_show.go b/ui/integration_show.go
index 1c8adce..3cea830 100644
--- a/ui/integration_show.go
+++ b/ui/integration_show.go
@@ -2,7 +2,7 @@
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
-package ui // import "miniflux.app/ui"
+package ui // import "miniflux.app/ui"
import (
"net/http"
@@ -18,13 +18,13 @@ import (
func (c *Controller) ShowIntegrations(w http.ResponseWriter, r *http.Request) {
user, err := c.store.UserByID(request.UserID(r))
if err != nil {
- html.ServerError(w, err)
+ html.ServerError(w, r, err)
return
}
integration, err := c.store.Integration(user.ID)
if err != nil {
- html.ServerError(w, err)
+ html.ServerError(w, r, err)
return
}