followers-cache-fix-2
All checks were successful
Deploy on push / deploy (push) Successful in 48s

This commit is contained in:
Untone 2024-05-30 21:10:16 +03:00
parent 9212fbe6b5
commit 5ba7f5e3c9

View File

@ -87,7 +87,7 @@ async def get_cached_authors_by_ids(authors_ids: List[int]) -> List[Author | dic
if isinstance(cached_result, str):
author = json.loads(cached_result)
if author:
authors.push(author)
authors.append(author)
return authors