From 612f91a70894a784864f6ab19b3dff344e9e81df Mon Sep 17 00:00:00 2001 From: Untone Date: Mon, 17 Jun 2024 14:52:09 +0300 Subject: [PATCH] followers-fix --- services/cache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/cache.py b/services/cache.py index df9e1db3..62f10293 100644 --- a/services/cache.py +++ b/services/cache.py @@ -181,7 +181,7 @@ async def get_cached_author_followers(author_id: int): author = json.loads(cached_author) if not author: return [] - + followers = [] followers_ids = [] followers_rkey = f"author:followers:{author_id}" cached = await redis.execute("GET", followers_rkey)