diff options
| author | PloughPuff <ploughpuff@protonmail.com> | 2019-01-28 13:41:37 +0000 |
|---|---|---|
| committer | Bond-009 <bond.009@outlook.com> | 2019-01-31 18:56:34 +0100 |
| commit | fd361421b120b103b2abaf1e3b36c6715887afe4 (patch) | |
| tree | f28959b8e3368d468df2ebce68f186ecc25e1bfb /Emby.Server.Implementations/EntryPoints/StartupWizard.cs | |
| parent | f7a46c7a56a76c644b5a6222df4e52371aeb27eb (diff) | |
Use CommandLineParser package for handling CLI args
Diffstat (limited to 'Emby.Server.Implementations/EntryPoints/StartupWizard.cs')
| -rw-r--r-- | Emby.Server.Implementations/EntryPoints/StartupWizard.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/EntryPoints/StartupWizard.cs b/Emby.Server.Implementations/EntryPoints/StartupWizard.cs index 05c8b07ab..bb96120f4 100644 --- a/Emby.Server.Implementations/EntryPoints/StartupWizard.cs +++ b/Emby.Server.Implementations/EntryPoints/StartupWizard.cs @@ -47,7 +47,7 @@ namespace Emby.Server.Implementations.EntryPoints { var options = ((ApplicationHost)_appHost).StartupOptions; - if (!options.ContainsOption("-noautorunwebapp")) + if (!options.NoAutoRunWebApp) { BrowserLauncher.OpenWebApp(_appHost); } |
