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

Co-authored-by: Cody Robibero <cody@robibe.ro>
This commit is contained in:
Bond-009 2023-02-24 16:22:30 +01:00 committed by GitHub
parent ab24c0e2cf
commit eaeb65f94d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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>();
}