d-fix
All checks were successful
Deploy on push / deploy (push) Successful in 1m7s

This commit is contained in:
Untone 2024-05-30 22:04:28 +03:00
parent 9307fc97fb
commit 9b2db3cc1d

View File

@ -134,7 +134,7 @@ async def get_cached_author_followers(author_id: int):
cached_author = await redis.execute("GET", f"author:id:{author_id}")
author = None
if cache_author:
author = json.loads(cache_author)
author = json.loads(cached_author)
if not author:
return []