From 41c1c5f7bf71552b2babbd7c0066c9057c970559 Mon Sep 17 00:00:00 2001 From: KGT1 Date: Tue, 7 Oct 2025 09:52:30 +0000 Subject: remove global subtitle configuration --- MediaBrowser.Model/Providers/SubtitleOptions.cs | 36 ------------------------- 1 file changed, 36 deletions(-) delete mode 100644 MediaBrowser.Model/Providers/SubtitleOptions.cs (limited to 'MediaBrowser.Model') diff --git a/MediaBrowser.Model/Providers/SubtitleOptions.cs b/MediaBrowser.Model/Providers/SubtitleOptions.cs deleted file mode 100644 index 6ea1e14862..0000000000 --- a/MediaBrowser.Model/Providers/SubtitleOptions.cs +++ /dev/null @@ -1,36 +0,0 @@ -#nullable disable -#pragma warning disable CS1591 - -using System; - -namespace MediaBrowser.Model.Providers -{ - public class SubtitleOptions - { - public SubtitleOptions() - { - DownloadLanguages = Array.Empty(); - - SkipIfAudioTrackMatches = true; - RequirePerfectMatch = true; - } - - public bool SkipIfEmbeddedSubtitlesPresent { get; set; } - - public bool SkipIfAudioTrackMatches { get; set; } - - public string[] DownloadLanguages { get; set; } - - public bool DownloadMovieSubtitles { get; set; } - - public bool DownloadEpisodeSubtitles { get; set; } - - public string OpenSubtitlesUsername { get; set; } - - public string OpenSubtitlesPasswordHash { get; set; } - - public bool IsOpenSubtitleVipAccount { get; set; } - - public bool RequirePerfectMatch { get; set; } - } -} -- cgit v1.2.3