diff options
| author | Mark Monteiro <marknr.monteiro@protonmail.com> | 2020-03-15 17:43:52 +0100 |
|---|---|---|
| committer | Mark Monteiro <marknr.monteiro@protonmail.com> | 2020-03-15 17:43:52 +0100 |
| commit | 5d482590463232d1462b2f4738920bbd05c25165 (patch) | |
| tree | 7169431a3c987d917d6406c17af576161d855749 | |
| parent | 05ab61200a181ff39034a5c3ba30a4ee2672971d (diff) | |
Use the same key constant for command line config and all other config
| -rw-r--r-- | Jellyfin.Server/StartupOptions.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server/StartupOptions.cs b/Jellyfin.Server/StartupOptions.cs index 0f15488f4..ac5df3925 100644 --- a/Jellyfin.Server/StartupOptions.cs +++ b/Jellyfin.Server/StartupOptions.cs @@ -21,7 +21,7 @@ namespace Jellyfin.Server /// <summary> /// Gets or sets a value indicating whether the server should not host static web content. /// </summary> - [Option("nowebcontent", Required = false, HelpText = "Indicates that the web server should not host any static web content.")] + [Option(ConfigurationExtensions.NoWebContentKey, Required = false, HelpText = "Indicates that the web server should not host any static web content.")] public bool NoWebContent { get; set; } /// <summary> |
