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

This commit is contained in:
Bond-009 2021-04-21 16:15:31 +02:00 committed by GitHub
parent 96348ed744
commit aa992efd31
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ namespace MediaBrowser.Providers.Plugins.Tmdb.TV
item.SetProviderId(MetadataProvider.Tvdb, externalIds.TvdbId);
}
if (!string.IsNullOrWhiteSpace(externalIds?.ImdbId))
if (!string.IsNullOrEmpty(externalIds?.ImdbId))
{
item.SetProviderId(MetadataProvider.Imdb, externalIds.ImdbId);
}