From b8a03c5a3ca6357d19f02ab20e2937cc54aff6eb Mon Sep 17 00:00:00 2001 From: Your Name Date: Sun, 14 Jul 2024 17:19:32 -0400 Subject: [PATCH] allow search legacy unlocalized title --- catalog/search/typesense.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catalog/search/typesense.py b/catalog/search/typesense.py index ccb263ec..499e41f7 100644 --- a/catalog/search/typesense.py +++ b/catalog/search/typesense.py @@ -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",