aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Configuration
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2016-10-05 11:20:48 -0400
committerGitHub <noreply@github.com>2016-10-05 11:20:48 -0400
commita2fa7c475404347aaf675bdd708a69c451f5af2e (patch)
treee9aa273f5d6d77473d3d1f345e2890c864a0e481 /MediaBrowser.Model/Configuration
parent0a87046736843dfa983213ae1e661d499a6d1df9 (diff)
parent83606d82d57604f9796455640d2e93367783f69e (diff)
Merge pull request #2210 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Model/Configuration')
-rw-r--r--MediaBrowser.Model/Configuration/ChapterOptions.cs16
1 files changed, 4 insertions, 12 deletions
diff --git a/MediaBrowser.Model/Configuration/ChapterOptions.cs b/MediaBrowser.Model/Configuration/ChapterOptions.cs
index c7bb6f861..1c2b0c527 100644
--- a/MediaBrowser.Model/Configuration/ChapterOptions.cs
+++ b/MediaBrowser.Model/Configuration/ChapterOptions.cs
@@ -2,18 +2,10 @@
{
public class ChapterOptions
{
- public bool DownloadMovieChapters { get; set; }
- public bool DownloadEpisodeChapters { get; set; }
+ public bool EnableMovieChapterImageExtraction { get; set; }
+ public bool EnableEpisodeChapterImageExtraction { get; set; }
+ public bool EnableOtherVideoChapterImageExtraction { get; set; }
- public string[] FetcherOrder { get; set; }
- public string[] DisabledFetchers { get; set; }
-
- public ChapterOptions()
- {
- DownloadMovieChapters = true;
-
- DisabledFetchers = new string[] { };
- FetcherOrder = new string[] { };
- }
+ public bool ExtractDuringLibraryScan { get; set; }
}
} \ No newline at end of file