aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/Program.cs
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2021-11-09 13:14:31 +0100
committerBond_009 <bond.009@outlook.com>2021-11-09 13:14:31 +0100
commit5726535a262ce5f671bb0b74dd00c485d17633f0 (patch)
treeba5d5631e2ec3363ababb6967ea1b8f2a859213b /Jellyfin.Server/Program.cs
parent6f85e3047591e716d732a648466c700769404f7c (diff)
Fix some warnings
609 left
Diffstat (limited to 'Jellyfin.Server/Program.cs')
-rw-r--r--Jellyfin.Server/Program.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server/Program.cs b/Jellyfin.Server/Program.cs
index 5c7012d58..6e4c2280b 100644
--- a/Jellyfin.Server/Program.cs
+++ b/Jellyfin.Server/Program.cs
@@ -675,7 +675,7 @@ namespace Jellyfin.Server
private static string NormalizeCommandLineArgument(string arg)
{
- if (!arg.Contains(" ", StringComparison.OrdinalIgnoreCase))
+ if (!arg.Contains(' ', StringComparison.Ordinal))
{
return arg;
}