mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-04 14:58:36 +01:00
display trailers within suggestions
This commit is contained in:
@@ -11,6 +11,8 @@ namespace MediaBrowser.Model.Configuration
|
||||
public bool EnableCustomIntro { get; set; }
|
||||
public bool EnableIntrosParentalControl { get; set; }
|
||||
public string CustomIntroPath { get; set; }
|
||||
public bool EnableIntrosFromUpcomingDvdMovies { get; set; }
|
||||
public bool EnableIntrosFromUpcomingStreamingMovies { get; set; }
|
||||
|
||||
public CinemaModeConfiguration()
|
||||
{
|
||||
@@ -18,6 +20,8 @@ namespace MediaBrowser.Model.Configuration
|
||||
EnableIntrosFromMoviesInLibrary = true;
|
||||
EnableIntrosFromUpcomingTrailers = true;
|
||||
EnableIntrosParentalControl = true;
|
||||
EnableIntrosFromUpcomingDvdMovies = true;
|
||||
EnableIntrosFromUpcomingStreamingMovies = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -82,6 +82,7 @@ namespace MediaBrowser.Model.Configuration
|
||||
public bool SyncConnectName { get; set; }
|
||||
public bool SyncConnectImage { get; set; }
|
||||
|
||||
public bool IncludeTrailersInSuggestions { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="UserConfiguration" /> class.
|
||||
@@ -106,6 +107,7 @@ namespace MediaBrowser.Model.Configuration
|
||||
|
||||
SyncConnectName = true;
|
||||
SyncConnectImage = true;
|
||||
IncludeTrailersInSuggestions = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user