mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
fixed case sensitivity in ratings comparisons
This commit is contained in:
parent
803e8b4a2e
commit
54f27da740
@ -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();
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user