mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-21 16:25:28 +03:00
Fix inverted boolean statement
This commit is contained in:
@@ -45,7 +45,7 @@ namespace MediaBrowser.Providers.Plugins.Tmdb.TV
|
||||
|
||||
var seriesTmdbId = Convert.ToInt32(series?.GetProviderId(MetadataProvider.Tmdb), CultureInfo.InvariantCulture);
|
||||
|
||||
if (seriesTmdbId <= 0 || season?.IndexNumber != null)
|
||||
if (seriesTmdbId <= 0 || season?.IndexNumber == null)
|
||||
{
|
||||
return Enumerable.Empty<RemoteImageInfo>();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user