diff options
| author | Mark Monteiro <marknr.monteiro@protonmail.com> | 2020-02-28 20:40:45 +0100 |
|---|---|---|
| committer | Mark Monteiro <marknr.monteiro@protonmail.com> | 2020-02-28 20:40:45 +0100 |
| commit | 3f4b9e9a81278c6f5c817036a7ae52b6f70557e4 (patch) | |
| tree | 874dc3c75f66b121b6b58abdba0ba4e63305d12d /Emby.Server.Implementations/ConfigurationOptions.cs | |
| parent | 3043b7323b1a12e888ba8c4eb71f904724f43e3a (diff) | |
Add new 'nowebcontent' configuration flag
Diffstat (limited to 'Emby.Server.Implementations/ConfigurationOptions.cs')
| -rw-r--r-- | Emby.Server.Implementations/ConfigurationOptions.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/ConfigurationOptions.cs b/Emby.Server.Implementations/ConfigurationOptions.cs index cc0d314ed..08a493cb7 100644 --- a/Emby.Server.Implementations/ConfigurationOptions.cs +++ b/Emby.Server.Implementations/ConfigurationOptions.cs @@ -15,6 +15,7 @@ namespace Emby.Server.Implementations /// </summary> public static Dictionary<string, string> DefaultConfiguration => new Dictionary<string, string> { + { NoWebContentKey, bool.FalseString }, { HttpListenerHost.DefaultRedirectKey, "web/index.html" }, { MusicBrainzAlbumProvider.BaseUrlKey, "https://www.musicbrainz.org" }, { FfmpegProbeSizeKey, "1G" }, |
