diff options
Diffstat (limited to 'ui/session_list.go')
-rw-r--r-- | ui/session_list.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/session_list.go b/ui/session_list.go index 28da2022..53051b2b 100644 --- a/ui/session_list.go +++ b/ui/session_list.go @@ -36,7 +36,7 @@ func (h *handler) showSessionsPage(w http.ResponseWriter, r *http.Request) { view.Set("menu", "settings") view.Set("user", user) view.Set("countUnread", h.store.CountUnreadEntries(user.ID)) - view.Set("countErrorFeeds", h.store.CountErrorFeeds(user.ID)) + view.Set("countErrorFeeds", h.store.CountUserFeedsWithErrors(user.ID)) html.OK(w, r, view.Render("sessions")) } |