Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/src/commit/4cff9b85120032057178f224f06730e019715b8b/MediaBrowser.Providers/Tmdb/Models/General/Images.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.

11 lines
232 B

using System.Collections.Generic;
namespace MediaBrowser.Providers.Tmdb.Models.General
{
public class Images
{
public List<Backdrop> Backdrops { get; set; }
public List<Poster> Posters { get; set; }
}
}