diff options
| author | Cody Robibero <cody@robibe.ro> | 2021-11-19 07:54:41 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-19 07:54:41 -0700 |
| commit | 0009e5cc27d4c1e1e224067af9b8089c5ec41850 (patch) | |
| tree | 908b48701a35282cbdd2ea64bc94b1f2a464ae34 /MediaBrowser.Model | |
| parent | 4a7498a0be5a48d39dbe3dc4395dd9a6c0ffe057 (diff) | |
| parent | acb86066fffa14e95d6d5ed52a50409bc1b326a5 (diff) | |
Merge pull request #6850 from PetrusZ/collection-validator
Diffstat (limited to 'MediaBrowser.Model')
| -rw-r--r-- | MediaBrowser.Model/Configuration/LibraryOptions.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Configuration/LibraryOptions.cs b/MediaBrowser.Model/Configuration/LibraryOptions.cs index aae5359b1..90cf8f43b 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; + AutomaticallyAddToCollection = 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 AutomaticallyAddToCollection { get; set; } public TypeOptions[] TypeOptions { get; set; } |
