Fix comparison

This commit is contained in:
MBR-0001
2026-04-16 22:32:14 +02:00
committed by MBR#0001
parent 73fd6721f6
commit d4a46bc629

View File

@@ -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;