mirror of
https://github.com/jellyfin/jellyfin
synced 2024-11-02 18:21:49 +00:00
fix query case sensitivity
This commit is contained in:
parent
1cea5bcbd8
commit
0e03980262
1 changed files with 1 additions and 1 deletions
|
@ -2283,7 +2283,7 @@ namespace MediaBrowser.Server.Implementations.Persistence
|
|||
|
||||
private static Dictionary<string, string[]> GetTypeMapDictionary()
|
||||
{
|
||||
var dict = new Dictionary<string, string[]>();
|
||||
var dict = new Dictionary<string, string[]>(StringComparer.OrdinalIgnoreCase);
|
||||
|
||||
foreach (var t in KnownTypes)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue