mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-24 02:54:43 +01:00
Fix comparison
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user