From 04b9704187d4a46885cc5a09baf31165282ea1da Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Mon, 5 Apr 2021 13:13:56 -0700 Subject: [PATCH] typo fix --- bookwyrm/activitystreams.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bookwyrm/activitystreams.py b/bookwyrm/activitystreams.py index fc50ef7b6..2db6cc20a 100644 --- a/bookwyrm/activitystreams.py +++ b/bookwyrm/activitystreams.py @@ -60,7 +60,7 @@ class ActivityStream(RedisStore): """ get the unread status count for this user's feed """ return int(r.get(self.unread_id(user)) or 0) - def populate_streamse(self, user): + def populate_streams(self, user): """ go from zero to a timeline """ super().populate_store(self.stream_id(user))