aboutsummaryrefslogtreecommitdiffhomepage
path: root/ui/about.go
diff options
context:
space:
mode:
Diffstat (limited to 'ui/about.go')
-rw-r--r--ui/about.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/about.go b/ui/about.go
index 484fdc0..1815532 100644
--- a/ui/about.go
+++ b/ui/about.go
@@ -31,6 +31,7 @@ func (c *Controller) About(w http.ResponseWriter, r *http.Request) {
view.Set("menu", "settings")
view.Set("user", user)
view.Set("countUnread", c.store.CountUnreadEntries(user.ID))
+ view.Set("countErrorFeeds", c.store.CountErrorFeeds(user.ID))
html.OK(w, r, view.Render("about"))
}