Merge pull request #2247 from Bond-009/stringhelper

Remove StringHelper functions
This commit is contained in:
dkanada
2020-02-01 03:29:16 +09:00
committed by GitHub
16 changed files with 146 additions and 164 deletions

View File

@@ -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;
}