diff options
| author | Matthew Jones <matthewbtjones2000@gmail.com> | 2022-01-26 16:09:05 +0000 |
|---|---|---|
| committer | Matthew Jones <matthewbtjones2000@gmail.com> | 2022-01-26 16:09:05 +0000 |
| commit | 91d143d6ee25a309efadf1575a1efc432adb81cf (patch) | |
| tree | 652680381b5ffb2c65646390d947e371ca76849d /MediaBrowser.Model/Configuration/LibraryOptions.cs | |
| parent | 61d8d40a4a2bcdfd72d810f1c22247dfc53d6d53 (diff) | |
Changed boolean options to enums
Diffstat (limited to 'MediaBrowser.Model/Configuration/LibraryOptions.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/LibraryOptions.cs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/MediaBrowser.Model/Configuration/LibraryOptions.cs b/MediaBrowser.Model/Configuration/LibraryOptions.cs index efa63b5e1..ad3bce86e 100644 --- a/MediaBrowser.Model/Configuration/LibraryOptions.cs +++ b/MediaBrowser.Model/Configuration/LibraryOptions.cs @@ -15,6 +15,7 @@ namespace MediaBrowser.Model.Configuration SkipSubtitlesIfAudioTrackMatches = true; RequirePerfectSubtitleMatch = true; + AllowEmbeddedSubtitles = EmbeddedSubtitleOptions.AllowAll; AutomaticallyAddToCollection = true; EnablePhotos = true; @@ -84,9 +85,7 @@ namespace MediaBrowser.Model.Configuration public bool AutomaticallyAddToCollection { get; set; } - public bool DisableEmbeddedTextSubtitles { get; set; } - - public bool DisableEmbeddedImageSubtitles { get; set; } + public EmbeddedSubtitleOptions AllowEmbeddedSubtitles { get; set; } public TypeOptions[] TypeOptions { get; set; } |
