diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-04-09 17:11:57 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-04-09 17:11:57 -0400 |
| commit | 1b600aee37fbcbe27ba48e669b5ada790aa4c5da (patch) | |
| tree | 48f61282a83f3715608f1d4363284deb892531b4 /MediaBrowser.Server.Implementations/Library/Validators/GameGenresValidator.cs | |
| parent | 1b549adf0fae6d54a2bd1187ce4013ef802b85f2 (diff) | |
improve name matching
Diffstat (limited to 'MediaBrowser.Server.Implementations/Library/Validators/GameGenresValidator.cs')
| -rw-r--r-- | MediaBrowser.Server.Implementations/Library/Validators/GameGenresValidator.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Library/Validators/GameGenresValidator.cs b/MediaBrowser.Server.Implementations/Library/Validators/GameGenresValidator.cs index 757936aa7..fe2e6a114 100644 --- a/MediaBrowser.Server.Implementations/Library/Validators/GameGenresValidator.cs +++ b/MediaBrowser.Server.Implementations/Library/Validators/GameGenresValidator.cs @@ -36,7 +36,7 @@ namespace MediaBrowser.Server.Implementations.Library.Validators { var items = _libraryManager.RootFolder.GetRecursiveChildren(i => (i is Game)) .SelectMany(i => i.Genres) - .Distinct(StringComparer.OrdinalIgnoreCase) + .DistinctNames() .ToList(); var numComplete = 0; |
