Skip to content

Commit

Permalink
fix for searching on AnyTags
Browse files Browse the repository at this point in the history
  • Loading branch information
Hendy committed Oct 12, 2018
1 parent 7b14eb9 commit e9b71a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Our.Umbraco.Look/Services/LookSearchService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public static IEnumerableWithTotal<LookMatch> Query(LookQuery lookQuery)

if (anyTags.Any())
{
query.And().GroupedOr(allTags.Select(x => LookConstants.TagsField), anyTags.ToArray());
query.And().GroupedOr(anyTags.Select(x => LookConstants.TagsField), anyTags.ToArray());
}
}

Expand Down

0 comments on commit e9b71a5

Please sign in to comment.