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/8ef37f6b0ec65256bd5b3741c049701e6f3b3202/MediaBrowser.Model/Querying/AllThemeMediaResult.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Model/Querying/AllThemeMediaResult.cs

24 lines
569 B

#nullable disable
#pragma warning disable CS1591
namespace MediaBrowser.Model.Querying
6 years ago
{
public class AllThemeMediaResult
{
public AllThemeMediaResult()
{
ThemeVideosResult = new ThemeMediaResult();
ThemeSongsResult = new ThemeMediaResult();
SoundtrackSongsResult = new ThemeMediaResult();
}
public ThemeMediaResult ThemeVideosResult { get; set; }
public ThemeMediaResult ThemeSongsResult { get; set; }
public ThemeMediaResult SoundtrackSongsResult { get; set; }
6 years ago
}
}