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/8f8b5d2422896ea956e8ddb75fa15ffb08002fc0/MediaBrowser.Providers/Tmdb/Models/Search/TvResult.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.

16 lines
510 B

namespace MediaBrowser.Providers.Tmdb.Models.Search
{
public class TvResult
{
public string Backdrop_Path { get; set; }
public string First_Air_Date { get; set; }
public int Id { get; set; }
public string Original_Name { get; set; }
public string Poster_Path { get; set; }
public double Popularity { get; set; }
public string Name { get; set; }
public double Vote_Average { get; set; }
public int Vote_Count { get; set; }
}
}