diff options
| author | Bond-009 <bond.009@outlook.com> | 2020-01-09 17:07:13 +0100 |
|---|---|---|
| committer | Bond-009 <bond.009@outlook.com> | 2020-01-09 17:07:13 +0100 |
| commit | fdbb32911835b5ed8e39f518ccc20b0a26bd8bab (patch) | |
| tree | f84daae0a290f7f107a3bbe0b12920a880ad47ac /Emby.Server.Implementations | |
| parent | 162c1ac7b7fde0e4929cf262b0f275e3eb15524c (diff) | |
Remove StringHelper functions
Diffstat (limited to 'Emby.Server.Implementations')
| -rw-r--r-- | Emby.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs b/Emby.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs index 3b6bfce6a..4e09f90b4 100644 --- a/Emby.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs +++ b/Emby.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs @@ -458,7 +458,7 @@ namespace Emby.Server.Implementations.LiveTv.EmbyTV { foreach (NameValuePair mapping in mappings) { - if (StringHelper.EqualsIgnoreCase(mapping.Name, channelId)) + if (string.Equals(mapping.Name, channelId, StringComparison.OrdinalIgnoreCase)) { return mapping.Value; } |
