diff --git a/ErsatzTV.Infrastructure/Search/LuceneSearchIndex.cs b/ErsatzTV.Infrastructure/Search/LuceneSearchIndex.cs index 4382101ab..ed4b3fc3d 100644 --- a/ErsatzTV.Infrastructure/Search/LuceneSearchIndex.cs +++ b/ErsatzTV.Infrastructure/Search/LuceneSearchIndex.cs @@ -1377,6 +1377,9 @@ public sealed class LuceneSearchIndex : ISearchIndex using var analyzer = new SimpleAnalyzer(AppLuceneVersion); var customAnalyzers = new Dictionary { + { IdField, new KeywordAnalyzer() }, + { LibraryIdField, new KeywordAnalyzer() }, + { LibraryFolderIdField, new KeywordAnalyzer() }, { TypeField, new KeywordAnalyzer() }, { TagField, new KeywordAnalyzer() }, { ShowTagField, new KeywordAnalyzer() },