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/160718efe275e2359aeb499eddba631a961366af/MediaBrowser.Providers/Tmdb/Models/TV/Episode.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Providers/Tmdb/Models/TV/Episode.cs

15 lines
444 B

namespace MediaBrowser.Providers.Tmdb.Models.TV
{
public class Episode
{
6 years ago
public string Air_Date { get; set; }
public int Episode_Number { get; set; }
public int Id { get; set; }
public string Name { get; set; }
public string Overview { get; set; }
public string Still_Path { get; set; }
public double Vote_Average { get; set; }
public int Vote_Count { get; set; }
}
}