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 /MediaBrowser.Model/Notifications/NotificationOptions.cs | |
| parent | 162c1ac7b7fde0e4929cf262b0f275e3eb15524c (diff) | |
Remove StringHelper functions
Diffstat (limited to 'MediaBrowser.Model/Notifications/NotificationOptions.cs')
| -rw-r--r-- | MediaBrowser.Model/Notifications/NotificationOptions.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Notifications/NotificationOptions.cs b/MediaBrowser.Model/Notifications/NotificationOptions.cs index f48b5ee7f..38600b9c8 100644 --- a/MediaBrowser.Model/Notifications/NotificationOptions.cs +++ b/MediaBrowser.Model/Notifications/NotificationOptions.cs @@ -79,7 +79,7 @@ namespace MediaBrowser.Model.Notifications { foreach (NotificationOption i in Options) { - if (StringHelper.EqualsIgnoreCase(type, i.Type)) return i; + if (string.Equals(type, i.Type, StringComparison.OrdinalIgnoreCase)) return i; } return null; } |
