Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
donker committed May 5, 2020
1 parent 53282b2 commit af4e97b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -210,9 +210,9 @@ protected IList<string> SearchContentSources
foreach (SearchContentSource contentSource in list)
{
if (configuredList == null ||
configuredList.Any(l => l.Contains(contentSource.LocalizedName)))
configuredList.Any(l => l.Equals(contentSource.LocalizedName)))
{
if (!_searchContentSources.Contains(contentSource.LocalizedName))
if (!_searchContentSources.Equals(contentSource.LocalizedName))
{
_searchContentSources.Add(contentSource.LocalizedName);
}
Expand Down

0 comments on commit af4e97b

Please sign in to comment.