diff options
| author | Bond_009 <bond.009@outlook.com> | 2020-05-01 16:48:33 +0200 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2020-05-01 16:48:33 +0200 |
| commit | 7659a2ab326770d7c81501c88966b4443ad2d39e (patch) | |
| tree | e4cc210a85df034e5db9a9460979dd7e0f751003 /MediaBrowser.Model/Dlna/CodecProfile.cs | |
| parent | 9265b422f70cdb1e87a165623fcde66ce6681368 (diff) | |
Remove ListHelper extensions
Diffstat (limited to 'MediaBrowser.Model/Dlna/CodecProfile.cs')
| -rw-r--r-- | MediaBrowser.Model/Dlna/CodecProfile.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Model/Dlna/CodecProfile.cs b/MediaBrowser.Model/Dlna/CodecProfile.cs index 756e500dd..7bb961deb 100644 --- a/MediaBrowser.Model/Dlna/CodecProfile.cs +++ b/MediaBrowser.Model/Dlna/CodecProfile.cs @@ -1,8 +1,8 @@ #pragma warning disable CS1591 using System; +using System.Linq; using System.Xml.Serialization; -using MediaBrowser.Model.Extensions; namespace MediaBrowser.Model.Dlna { @@ -57,7 +57,7 @@ namespace MediaBrowser.Model.Dlna foreach (var val in codec) { - if (ListHelper.ContainsIgnoreCase(codecs, val)) + if (codecs.Contains(val, StringComparer.OrdinalIgnoreCase)) { return true; } |
