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

This commit is contained in:
Untone 2024-06-02 16:10:09 +03:00
parent 0fdb056460
commit eba991f4f5

View File

@ -312,7 +312,7 @@ async def load_shouts_search(_, _info, text, limit=50, offset=0):
shouts = session.execute(query_shouts())
for shout in shouts:
shout.score = scores[int(shout.id)]
return shouts
return shouts.unique()
return []