search-with-images4
All checks were successful
Deploy on push / deploy (push) Successful in 1m8s

This commit is contained in:
Untone 2024-06-02 16:05:59 +03:00
parent 17da2c8359
commit 0fdb056460

View File

@ -309,7 +309,7 @@ async def load_shouts_search(_, _info, text, limit=50, offset=0):
assert "no id!!"
shouts = []
with local_session() as session:
shouts = session.query(Shout).filter(Shout.id.in_(hits_ids)).all()
shouts = session.execute(query_shouts())
for shout in shouts:
shout.score = scores[int(shout.id)]
return shouts