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

Update TvdbSeasonImageProvider.cs

pull/3250/head
shayaantx 5 years ago
parent 4623cb8385
commit 42bbfa772f

@ -89,9 +89,8 @@ namespace MediaBrowser.Providers.Plugins.TheTvdb
private IEnumerable<RemoteImageInfo> GetImages(Image[] images, string preferredLanguage)
{
var list = new List<RemoteImageInfo>();
var languages = _tvdbClientManager.GetLanguagesAsync(CancellationToken.None).Result.Data;
// any languages with null ids are ignored
languages = Array.FindAll(languages, language => language.Id != null);
var languages = _tvdbClientManager.GetLanguagesAsync(CancellationToken.None).Result.Data.Where(x => x.Id.HasValue);
foreach (Image image in images)
{
var imageInfo = new RemoteImageInfo

Loading…
Cancel
Save