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/7578dfac25316946d7a65123573d404d8965937d/MediaBrowser.Providers/Plugins/Tmdb/Models/TV/Network.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.

12 lines
207 B

#pragma warning disable CS1591
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.TV
{
public class Network
{
6 years ago
public int Id { get; set; }
6 years ago
public string Name { get; set; }
}
}