diff options
| author | Matthew Jones <matthewbtjones2000@gmail.com> | 2022-01-14 11:24:25 +0000 |
|---|---|---|
| committer | Matthew Jones <matthewbtjones2000@gmail.com> | 2022-01-14 11:25:08 +0000 |
| commit | 61d8d40a4a2bcdfd72d810f1c22247dfc53d6d53 (patch) | |
| tree | 5d372a3d38d0bb996265e8bec018d32b50150df6 /MediaBrowser.Model/Configuration/LibraryOptions.cs | |
| parent | 126274c4ea7c664b21f7c0edc37a90579f4a6f76 (diff) | |
Added type options to disable embedded subs
Diffstat (limited to 'MediaBrowser.Model/Configuration/LibraryOptions.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/LibraryOptions.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Configuration/LibraryOptions.cs b/MediaBrowser.Model/Configuration/LibraryOptions.cs index 5b77d22fa..efa63b5e1 100644 --- a/MediaBrowser.Model/Configuration/LibraryOptions.cs +++ b/MediaBrowser.Model/Configuration/LibraryOptions.cs @@ -84,7 +84,9 @@ namespace MediaBrowser.Model.Configuration public bool AutomaticallyAddToCollection { get; set; } - public bool DisableEmbeddedSubtitles { get; set; } + public bool DisableEmbeddedTextSubtitles { get; set; } + + public bool DisableEmbeddedImageSubtitles { get; set; } public TypeOptions[] TypeOptions { get; set; } |
