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.Dlna/ContentDirectory/ControlHandler.cs | |
| parent | 04cc4eaf6899f02fc657f2e20a73317f24afe840 (diff) | |
disable movie folder feature for dlna by default
Diffstat (limited to 'MediaBrowser.Dlna/ContentDirectory/ControlHandler.cs')
| -rw-r--r-- | MediaBrowser.Dlna/ContentDirectory/ControlHandler.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Dlna/ContentDirectory/ControlHandler.cs b/MediaBrowser.Dlna/ContentDirectory/ControlHandler.cs index 72040c8ae..a9ce5587d 100644 --- a/MediaBrowser.Dlna/ContentDirectory/ControlHandler.cs +++ b/MediaBrowser.Dlna/ContentDirectory/ControlHandler.cs @@ -523,7 +523,7 @@ namespace MediaBrowser.Dlna.ContentDirectory if (context == null || context.IsFolder) { var movie = item as Movie; - if (movie != null && options.EnableEnhancedMovies) + if (movie != null && options.EnableMovieFolders) { if (movie.GetTrailerIds().Count > 0 || movie.SpecialFeatureIds.Count > 0) |
