cache-postrefactor-fix
All checks were successful
Deploy on push / deploy (push) Successful in 25s

This commit is contained in:
2024-05-21 02:56:58 +03:00
parent 1592065a8c
commit d89fa283dc
2 changed files with 67 additions and 79 deletions

View File

@@ -215,7 +215,7 @@ async def get_author_follows_topics(_, _info, slug="", user=None, author_id=None
author_id = author_id_result[0] if author_id_result else None
if not author_id:
raise ValueError("Author not found")
return get_author_follows_topics(author_id)
return get_cached_author_follows_topics(author_id)
@query.field("get_author_follows_authors")