aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations
diff options
context:
space:
mode:
authordkanada <dkanada@users.noreply.github.com>2020-02-01 03:29:16 +0900
committerGitHub <noreply@github.com>2020-02-01 03:29:16 +0900
commitcd13f718fb52c507512615fad08e3c3670834163 (patch)
treeedea8b497082d3d9715c4de0fdc400e0a5db5425 /Emby.Server.Implementations
parentb3811a9498fe06b68693f4a269de902cdd7eb2a2 (diff)
parent6cd9c84ddf4940a5db1c3d84f1f61a89e5b4e168 (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.cs2
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;
}