summaryrefslogtreecommitdiff
path: root/ui/opml_import.go
diff options
context:
space:
mode:
Diffstat (limited to 'ui/opml_import.go')
-rw-r--r--ui/opml_import.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/opml_import.go b/ui/opml_import.go
index 06f54bb9..ea6b3626 100644
--- a/ui/opml_import.go
+++ b/ui/opml_import.go
@@ -25,7 +25,7 @@ func (h *handler) showImportPage(w http.ResponseWriter, r *http.Request) {
view.Set("menu", "feeds")
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("import"))
}