mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-06 18:26:33 +00:00
get imdb id for episodes
This commit is contained in:
@@ -306,6 +306,13 @@ namespace MediaBrowser.Providers.TV
|
||||
episode.PremiereDate = airDate.ToUniversalTime();
|
||||
episode.ProductionYear = airDate.Year;
|
||||
}
|
||||
|
||||
var imdbId = doc.SafeGetString("//IMDB_ID");
|
||||
if (!string.IsNullOrEmpty(imdbId))
|
||||
{
|
||||
episode.SetProviderId(MetadataProviders.Imdb, imdbId);
|
||||
}
|
||||
|
||||
if (!episode.LockedFields.Contains(MetadataFields.Cast))
|
||||
{
|
||||
episode.People.Clear();
|
||||
|
||||
Reference in New Issue
Block a user