diff options
| author | Cody Robibero <cody@robibe.ro> | 2021-11-08 12:39:02 -0700 |
|---|---|---|
| committer | Cody Robibero <cody@robibe.ro> | 2021-11-08 12:40:52 -0700 |
| commit | 64652b639299ecd9a692f89a7bbda3f827129fa3 (patch) | |
| tree | 7d3cfe217f61c238406383e48e5cad47c4f4d95d /MediaBrowser.Model/Dlna/StreamInfo.cs | |
| parent | 40045d21470ce0eb15e5c9700d6a1449dbf7c36e (diff) | |
Fix and disable new dotnet6 warnings
Diffstat (limited to 'MediaBrowser.Model/Dlna/StreamInfo.cs')
| -rw-r--r-- | MediaBrowser.Model/Dlna/StreamInfo.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Dlna/StreamInfo.cs b/MediaBrowser.Model/Dlna/StreamInfo.cs index 4414415a2..cf8465067 100644 --- a/MediaBrowser.Model/Dlna/StreamInfo.cs +++ b/MediaBrowser.Model/Dlna/StreamInfo.cs @@ -794,7 +794,7 @@ namespace MediaBrowser.Model.Dlna } // strip spaces to avoid having to encode h264 profile names - list.Add(new NameValuePair(pair.Key, pair.Value.Replace(" ", string.Empty))); + list.Add(new NameValuePair(pair.Key, pair.Value.Replace(" ", string.Empty, StringComparison.Ordinal))); } if (!item.IsDirectStream) |
