diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2021-11-09 14:02:38 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-09 14:02:38 +0100 |
| commit | ca6211ad61881f298c054ad418c3a099e63be308 (patch) | |
| tree | ba5d5631e2ec3363ababb6967ea1b8f2a859213b /Jellyfin.Server/Program.cs | |
| parent | 6f85e3047591e716d732a648466c700769404f7c (diff) | |
| parent | 5726535a262ce5f671bb0b74dd00c485d17633f0 (diff) | |
Merge pull request #6813 from Bond-009/warn54
Fix some warnings
Diffstat (limited to 'Jellyfin.Server/Program.cs')
| -rw-r--r-- | Jellyfin.Server/Program.cs | 2 |
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; } |
