diff options
Diffstat (limited to 'ui/entry_bookmark.go')
-rw-r--r-- | ui/entry_bookmark.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/entry_bookmark.go b/ui/entry_bookmark.go index a07859d7..86155713 100644 --- a/ui/entry_bookmark.go +++ b/ui/entry_bookmark.go @@ -77,7 +77,7 @@ func (h *handler) showStarredEntryPage(w http.ResponseWriter, r *http.Request) { view.Set("menu", "starred") 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("entry")) |