Update MediaBrowser.Providers/Plugins/Tmdb/TV/TmdbEpisodeImageProvider.cs

Co-authored-by: Cody Robibero <cody@robibe.ro>
pull/9381/head
Bond-009 1 year ago committed by GitHub
parent ab24c0e2cf
commit eaeb65f94d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -61,7 +61,7 @@ namespace MediaBrowser.Providers.Plugins.Tmdb.TV
var seriesTmdbId = Convert.ToInt32(series?.GetProviderId(MetadataProvider.Tmdb), CultureInfo.InvariantCulture);
if (series == null || seriesTmdbId <= 0)
if (series is null || seriesTmdbId <= 0)
{
return Enumerable.Empty<RemoteImageInfo>();
}

Loading…
Cancel
Save