diff options
| author | MBR-0001 <55142207+MBR-0001@users.noreply.github.com> | 2026-04-16 22:32:14 +0200 |
|---|---|---|
| committer | MBR#0001 <mbr@mbr.pw> | 2026-04-16 22:34:13 +0200 |
| commit | d4a46bc6291560b35a9b64fb88b68019f903d0ef (patch) | |
| tree | 0540c842350856c6468b23a3e3d4327081f6af68 | |
| parent | 73fd6721f62056bfaabd43b75d286c140a353657 (diff) | |
Fix comparison
| -rw-r--r-- | MediaBrowser.Providers/MediaInfo/SubtitleScheduledTask.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Providers/MediaInfo/SubtitleScheduledTask.cs b/MediaBrowser.Providers/MediaInfo/SubtitleScheduledTask.cs index 8073919182..f1582febf2 100644 --- a/MediaBrowser.Providers/MediaInfo/SubtitleScheduledTask.cs +++ b/MediaBrowser.Providers/MediaInfo/SubtitleScheduledTask.cs @@ -82,7 +82,7 @@ namespace MediaBrowser.Providers.MediaInfo continue; } - if (_subtitleProviders.All(provider => libraryOptions.DisabledSubtitleFetchers.Contains(provider.Name))) + if (_subtitleProviders.All(provider => libraryOptions.DisabledSubtitleFetchers.Contains(provider.Name, StringComparer.OrdinalIgnoreCase))) { // Skip this library if all subtitle providers are disabled continue; |
