fmt
All checks were successful
Deploy on push / deploy (push) Successful in 22s

This commit is contained in:
2024-03-28 15:56:32 +03:00
parent 7f913050ee
commit 9bda7cef95
12 changed files with 273 additions and 177 deletions

View File

@@ -430,8 +430,7 @@ async def reacted_shouts_updates(follower_id: int, limit=50, offset=0) -> List[S
.outerjoin(
Reaction,
and_(
Reaction.shout == Shout.id,
Reaction.created_by == follower_id,
Reaction.shout == Shout.id, Reaction.created_by == follower_id
),
)
.outerjoin(Author, Shout.authors.any(id=follower_id))