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/305808dd0ac4f86bb1663e7f6ba2b22064ace0ba/MediaBrowser.Providers/Plugins/Tmdb/Models/Collections/CollectionResult.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.

16 lines
469 B

using System.Collections.Generic;
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.Collections
{
public class CollectionResult
{
public int Id { get; set; }
public string Name { get; set; }
public string Overview { get; set; }
public string Poster_Path { get; set; }
public string Backdrop_Path { get; set; }
public List<Part> Parts { get; set; }
public CollectionImages Images { get; set; }
}
}