aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server
diff options
context:
space:
mode:
authorPloughPuff <ploughpuff@protonmail.com>2019-01-28 21:45:00 +0000
committerBond-009 <bond.009@outlook.com>2019-01-31 18:56:34 +0100
commit211ae30188546e9c652b68b609ab6266ab42a49d (patch)
tree12e2f5f6ec0e5ff57258fb3f9857e4799ee15c6f /Jellyfin.Server
parente18b89ca275feceee21b540878017a2373e7de6c (diff)
Revert back to NoAutoRunWebApp
Addressed further review comments. Removed unnecessary .ParsedStartupOptions namespace. Removed DataDir, ConfigDir and LogDir from Interface file as not necessary.
Diffstat (limited to 'Jellyfin.Server')
-rw-r--r--Jellyfin.Server/StartupOptions.cs10
1 files changed, 2 insertions, 8 deletions
diff --git a/Jellyfin.Server/StartupOptions.cs b/Jellyfin.Server/StartupOptions.cs
index 97fcb633a..a1bdb756e 100644
--- a/Jellyfin.Server/StartupOptions.cs
+++ b/Jellyfin.Server/StartupOptions.cs
@@ -1,5 +1,5 @@
using CommandLine;
-using Emby.Server.Implementations.ParsedStartupOptions;
+using Emby.Server.Implementations;
namespace Jellyfin.Server
{
@@ -27,7 +27,7 @@ namespace Jellyfin.Server
public bool IsService { get; set; }
[Option("noautorunwebapp", Required = false, HelpText = "Run headless if startup wizard is complete.")]
- public bool AutoRunWebApp { get => !NoautoRunWebApp; set => NoautoRunWebApp = value; }
+ public bool NoAutoRunWebApp { get; set; }
[Option("package-name", Required = false, HelpText = "Used when packaging Jellyfin (example, synology).")]
public string PackageName { get; set; }
@@ -37,11 +37,5 @@ namespace Jellyfin.Server
[Option("restartargs", Required = false, HelpText = "Arguments for restart script.")]
public string RestartArgs { get; set; }
-
- /// <summary>
- /// Gets or sets a value indicating whether to run not run the web app.
- /// Command line switch is --noautorunwebapp, which we store privately here, but provide inverse (AutoRunWebApp) for users.
- /// </summary>
- private bool NoautoRunWebApp { get; set; }
}
}