aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/StartupOptions.cs
diff options
context:
space:
mode:
authorMark Monteiro <marknr.monteiro@protonmail.com>2020-03-21 18:25:09 +0100
committerMark Monteiro <marknr.monteiro@protonmail.com>2020-03-21 18:25:09 +0100
commitaa546dd36abb688cb3a5d10e589521ebf79ef610 (patch)
treec59d8121947172b7269d7bd289ce4e331388b641 /Jellyfin.Server/StartupOptions.cs
parent1a63c3f3644f8144ac7761724476891f4dc1d2cd (diff)
Rename command line option to --nowebclient and config setting to HostWebClient
Diffstat (limited to 'Jellyfin.Server/StartupOptions.cs')
-rw-r--r--Jellyfin.Server/StartupOptions.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/Jellyfin.Server/StartupOptions.cs b/Jellyfin.Server/StartupOptions.cs
index 0abc0fd91..c93577d3e 100644
--- a/Jellyfin.Server/StartupOptions.cs
+++ b/Jellyfin.Server/StartupOptions.cs
@@ -19,10 +19,10 @@ namespace Jellyfin.Server
public string? DataDir { get; set; }
/// <summary>
- /// Gets or sets a value indicating whether the server should not host static web content.
+ /// Gets or sets a value indicating whether the server should not host the web client.
/// </summary>
- [Option(ConfigurationExtensions.NoWebContentKey, Required = false, HelpText = "Indicates that the web server should not host any static web content.")]
- public bool NoWebContent { get; set; }
+ [Option("nowebclient", Required = false, HelpText = "Indicates that the web server should not host the web client.")]
+ public bool NoWebClient { get; set; }
/// <summary>
/// Gets or sets the path to the web directory.
@@ -84,9 +84,9 @@ namespace Jellyfin.Server
{
var config = new Dictionary<string, string>();
- if (NoWebContent)
+ if (NoWebClient)
{
- config.Add(ConfigurationExtensions.NoWebContentKey, bool.TrueString);
+ config.Add(ConfigurationExtensions.HostWebClientKey, bool.FalseString);
}
return config;