aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs')
-rw-r--r--MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs6
1 files changed, 0 insertions, 6 deletions
diff --git a/MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs b/MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs
index 15f7de6ad..8154e764a 100644
--- a/MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs
+++ b/MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs
@@ -8,7 +8,6 @@ namespace MediaBrowser.Model.Configuration
public bool EnableIntrosForWatchedContent { get; set; }
public bool EnableIntrosFromUpcomingTrailers { get; set; }
public bool EnableIntrosFromMoviesInLibrary { get; set; }
- public bool EnableCustomIntro { get; set; }
public bool EnableIntrosParentalControl { get; set; }
public string CustomIntroPath { get; set; }
public bool EnableIntrosFromUpcomingDvdMovies { get; set; }
@@ -16,12 +15,7 @@ namespace MediaBrowser.Model.Configuration
public CinemaModeConfiguration()
{
- EnableCustomIntro = true;
- EnableIntrosFromMoviesInLibrary = true;
- EnableIntrosFromUpcomingTrailers = true;
EnableIntrosParentalControl = true;
- EnableIntrosFromUpcomingDvdMovies = true;
- EnableIntrosFromUpcomingStreamingMovies = true;
}
}
}