Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/blame/commit/06db5f8bca0b27663714ae7f8dc39084749a191e/MediaBrowser.Providers/Plugins/Tmdb/Models/TV/SeasonImages.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Providers/Plugins/Tmdb/Models/TV/SeasonImages.cs

13 lines
277 B

#pragma warning disable CS1591
using System.Collections.Generic;
using MediaBrowser.Providers.Plugins.Tmdb.Models.General;
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.TV
{
public class SeasonImages
{
6 years ago
public List<Poster> Posters { get; set; }
}
}