Skip to content

Commit

Permalink
lowercasing the tags when storing
Browse files Browse the repository at this point in the history
  • Loading branch information
Hendy committed Oct 12, 2018
1 parent 23336cf commit a3e7d13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Our.Umbraco.Look/Services/LookIndexService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ internal static void Index(IPublishedContent publishedContent, Document document
{
var tagField = new Field(
LookConstants.TagsField,
tag,
tag.ToLower(), // HACK: until we can figure out how to do case sensitive searches without changing config files
Field.Store.YES,
Field.Index.NOT_ANALYZED);

Expand Down

0 comments on commit a3e7d13

Please sign in to comment.