mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
fix query case sensitivity
This commit is contained in:
parent
1cea5bcbd8
commit
0e03980262
@ -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…
x
Reference in New Issue
Block a user