Skip to content

Commit

Permalink
[BR-3539] Fuzzy search
Browse files Browse the repository at this point in the history
  • Loading branch information
MDuncan98 committed Sep 22, 2023
1 parent d0e7150 commit 95a6f9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gibe.Umbraco.Blog/Filters/SearchTermBlogPostFilter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public SearchTermBlogPostFilter(string searchTerm)

public IBooleanOperation GetCriteria(IQuery query)
{
return query.Field(ExamineFields.BodyText, SearchTerm.MultipleCharacterWildcard());
return query.Field(ExamineFields.BodyText, SearchTerm.Fuzzy());
}
}
}

0 comments on commit 95a6f9d

Please sign in to comment.