Skip to content

Commit

Permalink
fix(search): fixes issue where exact match exclusive flag broke quote…
Browse files Browse the repository at this point in the history
…d structured search (#10690)
  • Loading branch information
nmbryant committed Jun 14, 2024
1 parent cc8389e commit 8705d97
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ private Optional<QueryBuilder> getStructuredQuery(
if (customQueryConfig != null) {
executeStructuredQuery = customQueryConfig.isStructuredQuery();
} else {
executeStructuredQuery = !(isQuoted(sanitizedQuery) && exactMatchConfiguration.isExclusive());
executeStructuredQuery = true;
}

if (executeStructuredQuery) {
Expand Down

0 comments on commit 8705d97

Please sign in to comment.