aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model
diff options
context:
space:
mode:
authorPetrus.Z <silencly07@gmail.com>2021-11-17 14:02:07 +0800
committerPetrus.Z <silencly07@gmail.com>2021-11-17 14:02:07 +0800
commit0a0ddb0eafa669256f0493d1bc2abdf32290302a (patch)
treeafc402e129eff67fb2efbe395a842c2a6481be9b /MediaBrowser.Model
parent1924d0740d2846aae401686e45d55e8c8358e23b (diff)
Add AutoCollection option
it can determine whether auto create/add movies to collection Signed-off-by: Petrus.Z <silencly07@gmail.com>
Diffstat (limited to 'MediaBrowser.Model')
-rw-r--r--MediaBrowser.Model/Configuration/LibraryOptions.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Configuration/LibraryOptions.cs b/MediaBrowser.Model/Configuration/LibraryOptions.cs
index aae5359b1..0a676de9a 100644
--- a/MediaBrowser.Model/Configuration/LibraryOptions.cs
+++ b/MediaBrowser.Model/Configuration/LibraryOptions.cs
@@ -16,6 +16,7 @@ namespace MediaBrowser.Model.Configuration
SkipSubtitlesIfAudioTrackMatches = true;
RequirePerfectSubtitleMatch = true;
+ AutoCollection = true;
EnablePhotos = true;
SaveSubtitlesWithMedia = true;
EnableRealtimeMonitor = true;
@@ -80,6 +81,7 @@ namespace MediaBrowser.Model.Configuration
public bool RequirePerfectSubtitleMatch { get; set; }
public bool SaveSubtitlesWithMedia { get; set; }
+ public bool AutoCollection { get; set; }
public TypeOptions[] TypeOptions { get; set; }