diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2020-02-01 03:29:16 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-01 03:29:16 +0900 |
| commit | cd13f718fb52c507512615fad08e3c3670834163 (patch) | |
| tree | edea8b497082d3d9715c4de0fdc400e0a5db5425 /Emby.Server.Implementations | |
| parent | b3811a9498fe06b68693f4a269de902cdd7eb2a2 (diff) | |
| parent | 6cd9c84ddf4940a5db1c3d84f1f61a89e5b4e168 (diff) | |
Merge pull request #2247 from Bond-009/stringhelper
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 2fe699aabc..4ac48e5378 100644 --- a/Emby.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs +++ b/Emby.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs @@ -427,7 +427,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; } |
