mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-08 11:22:23 +01:00
fixed case sensitivity in ratings comparisons
This commit is contained in:
@@ -204,7 +204,7 @@ namespace MediaBrowser.Server.Implementations.Localization
|
||||
|
||||
})
|
||||
.Where(i => i != null)
|
||||
.ToDictionary(i => i.Name);
|
||||
.ToDictionary(i => i.Name, StringComparer.OrdinalIgnoreCase);
|
||||
|
||||
var countryCode = Path.GetFileNameWithoutExtension(file).Split('-').Last();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user