allow search legacy unlocalized title

This commit is contained in:
Your Name 2024-07-14 17:19:32 -04:00 committed by Henri Dickson
parent cfafa57d8e
commit b8a03c5a3c

View file

@ -355,7 +355,7 @@ class Indexer:
"q": q,
"page": page,
"per_page": SEARCH_PAGE_SIZE,
"query_by": ",".join(SEARCHABLE_ATTRIBUTES),
"query_by": ",".join(["title", "other_title"] + SEARCHABLE_ATTRIBUTES),
"filter_by": filters,
# "facet_by": "category",
"sort_by": "_text_match:desc,rating_count:desc",