aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model
diff options
context:
space:
mode:
authorClaus Vium <cvium@users.noreply.github.com>2020-12-03 08:00:44 +0100
committerGitHub <noreply@github.com>2020-12-03 08:00:44 +0100
commit4ae62e74e92d4527cf4e41cc1705cf46ad170315 (patch)
tree664c8fc27e21527a588b661e260049b98375e890 /MediaBrowser.Model
parent1d3b2e8dd62da8d8aa1ae1cbc20e707b7ec52580 (diff)
parente4fd61411f102abdd4aa5b6df67c9b18c103cb28 (diff)
Merge pull request #4644 from jellyfin/minor9
Minor improvements
Diffstat (limited to 'MediaBrowser.Model')
-rw-r--r--MediaBrowser.Model/Dlna/ContainerProfile.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Dlna/ContainerProfile.cs b/MediaBrowser.Model/Dlna/ContainerProfile.cs
index 09afa64bb..56c89d854 100644
--- a/MediaBrowser.Model/Dlna/ContainerProfile.cs
+++ b/MediaBrowser.Model/Dlna/ContainerProfile.cs
@@ -47,7 +47,7 @@ namespace MediaBrowser.Model.Dlna
public static bool ContainsContainer(string profileContainers, string inputContainer)
{
var isNegativeList = false;
- if (profileContainers != null && profileContainers.StartsWith("-", StringComparison.Ordinal))
+ if (profileContainers != null && profileContainers.StartsWith('-'))
{
isNegativeList = true;
profileContainers = profileContainers.Substring(1);