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/b80c2a532ef8044ce55aa5853d6fde47c2d19734/MediaBrowser.Providers/Tmdb/Models/General/Video.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.

15 lines
428 B

namespace MediaBrowser.Providers.Tmdb.Models.General
{
public class Video
{
6 years ago
public string Id { get; set; }
public string Iso_639_1 { get; set; }
public string Iso_3166_1 { get; set; }
public string Key { get; set; }
public string Name { get; set; }
public string Site { get; set; }
public string Size { get; set; }
public string Type { get; set; }
}
}