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/d283b33dde35b0990717c5ceb7fd6be5ecdd7072/MediaBrowser.Providers/Movies/TmdbSettings.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Providers.Movies
|
|
|
|
|
{
|
|
|
|
|
internal class TmdbImageSettings
|
|
|
|
|
{
|
|
|
|
|
public List<string> backdrop_sizes { get; set; }
|
|
|
|
|
public string base_url { get; set; }
|
|
|
|
|
public List<string> poster_sizes { get; set; }
|
|
|
|
|
public List<string> profile_sizes { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal class TmdbSettingsResult
|
|
|
|
|
{
|
|
|
|
|
public TmdbImageSettings images { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|