Skip to content

Commit 02f9d1d

Browse files
committed
Fix key unpacking for nouveau queries
1 parent 4c08276 commit 02f9d1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: shared-libs/search/src/freetext-query.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const getLuceneQueryString = (view, { key, startkey }) => {
4141
return `contact_type:"${(key || startkey)[0]}" AND ${getQuery(key?.[1], startkey?.[1])}`;
4242
}
4343

44-
return getQuery(key, startkey);
44+
return getQuery(key?.[0], startkey?.[0]);
4545
};
4646

4747
const getRequestBody = (view, params, bookmark) => {

0 commit comments

Comments
 (0)