diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-10-14 22:58:31 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-10-14 22:58:31 -0400 |
| commit | 5471cdce2f7cfee10b617640a99ace184e2571e9 (patch) | |
| tree | c8643f5327dc1beb0cbad3705982999c92d5b51b /MediaBrowser.Model/Configuration/DlnaOptions.cs | |
| parent | 04cc4eaf6899f02fc657f2e20a73317f24afe840 (diff) | |
disable movie folder feature for dlna by default
Diffstat (limited to 'MediaBrowser.Model/Configuration/DlnaOptions.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/DlnaOptions.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/MediaBrowser.Model/Configuration/DlnaOptions.cs b/MediaBrowser.Model/Configuration/DlnaOptions.cs index 277102a50..c1974b877 100644 --- a/MediaBrowser.Model/Configuration/DlnaOptions.cs +++ b/MediaBrowser.Model/Configuration/DlnaOptions.cs @@ -10,7 +10,7 @@ namespace MediaBrowser.Model.Configuration public int ClientDiscoveryIntervalSeconds { get; set; } public int BlastAliveMessageIntervalSeconds { get; set; } public string DefaultUserId { get; set; } - public bool EnableEnhancedMovies { get; set; } + public bool EnableMovieFolders { get; set; } public DlnaOptions() { @@ -19,7 +19,6 @@ namespace MediaBrowser.Model.Configuration BlastAliveMessages = true; ClientDiscoveryIntervalSeconds = 60; BlastAliveMessageIntervalSeconds = 30; - EnableEnhancedMovies = true; } } } |
