Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/6a665e18072e7ee861d4f964c212980b98712a4d You should set ROOT_URL correctly, otherwise the web may not work correctly.

get imdb id for episodes

pull/702/head
Luke Pulverenti 12 years ago
parent f8b042b87d
commit 6a665e1807

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

Loading…
Cancel
Save