mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
fixed merge
This commit is contained in:
parent
f8b717e7c5
commit
41246909dc
@ -173,8 +173,16 @@ namespace Emby.Dlna
|
||||
return false;
|
||||
}
|
||||
|
||||
return input.Equals(pattern, StringComparison.OrdinalIgnoreCase)
|
||||
try
|
||||
{
|
||||
return input.Equals(pattern, StringComparison.OrdinalIgnoreCase)
|
||||
|| Regex.IsMatch(input, pattern, RegexOptions.IgnoreCase | RegexOptions.CultureInvariant);
|
||||
}
|
||||
catch (ArgumentException ex)
|
||||
{
|
||||
_logger.LogError(ex, "Error evaluating regex pattern {Pattern}", pattern);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public DeviceProfile GetProfile(IHeaderDictionary headers)
|
||||
|
Loading…
x
Reference in New Issue
Block a user