diff options
Diffstat (limited to 'ui/search_entries.go')
-rw-r--r-- | ui/search_entries.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/search_entries.go b/ui/search_entries.go index 054d7808..5dfd6db7 100644 --- a/ui/search_entries.go +++ b/ui/search_entries.go @@ -54,7 +54,7 @@ func (h *handler) showSearchEntriesPage(w http.ResponseWriter, r *http.Request) view.Set("menu", "search") 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)) view.Set("hasSaveEntry", h.store.HasSaveEntry(user.ID)) html.OK(w, r, view.Render("search_entries")) |