summaryrefslogtreecommitdiff
path: root/ui/user_create.go
diff options
context:
space:
mode:
Diffstat (limited to 'ui/user_create.go')
-rw-r--r--ui/user_create.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/user_create.go b/ui/user_create.go
index c3269b22..a30f3346 100644
--- a/ui/user_create.go
+++ b/ui/user_create.go
@@ -33,7 +33,7 @@ func (h *handler) showCreateUserPage(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("create_user"))
}