search-with-images33
Some checks failed
Deploy on push / deploy (push) Failing after 8s

This commit is contained in:
Untone 2024-06-02 18:59:00 +03:00
parent 44b797c1de
commit f41359b8c9

View File

@ -306,7 +306,7 @@ async def load_shouts_search(_, _info, text, limit=50, offset=0):
shout_id = str(shout_id) shout_id = str(shout_id)
scores[shout_id] = sr.get("score") scores[shout_id] = sr.get("score")
hits_ids.append(shout_id) hits_ids.append(shout_id)
result = local_session().execute(query_shouts().filter(Shout.id.in_(hits_ids))).unique() result = local_session().execute(query_shouts().filter(Shout.id.in_(hits_ids))).unique().first()
if result: if result:
logger.debug(result) logger.debug(result)
shouts = [] shouts = []