aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Configuration/ChapterOptions.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-10-05 03:15:29 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-10-05 03:15:29 -0400
commitb9cacd8076c00bfc371898c50315304927efaff8 (patch)
treee3fee51b628343baa2c4b8cc0e4b1d3b826c1726 /MediaBrowser.Model/Configuration/ChapterOptions.cs
parentc4e137e6cf7a52937e1169d1f170da4b8e72ba6a (diff)
update live streams
Diffstat (limited to 'MediaBrowser.Model/Configuration/ChapterOptions.cs')
-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