mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-16 14:03:03 +03:00
fix case sensitive file names
This commit is contained in:
@@ -145,8 +145,10 @@ namespace MediaBrowser.Model.Dlna
|
||||
|
||||
switch (condition.Condition)
|
||||
{
|
||||
case ProfileConditionType.SubstringOf:
|
||||
return StringHelper.IndexOfIgnoreCase(currentValue, expected) != -1;
|
||||
case ProfileConditionType.EqualsAny:
|
||||
{
|
||||
return ListHelper.ContainsIgnoreCase(expected.Split('|'), currentValue);
|
||||
}
|
||||
case ProfileConditionType.Equals:
|
||||
return StringHelper.EqualsIgnoreCase(currentValue, expected);
|
||||
case ProfileConditionType.NotEquals:
|
||||
|
||||
Reference in New Issue
Block a user