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/b91f1e4d16299e5f861c037bf449e5718140d82c/MediaBrowser.Api/IHasDtoOptions.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Api/IHasDtoOptions.cs

14 lines
274 B

10 years ago

10 years ago
namespace MediaBrowser.Api
{
public interface IHasDtoOptions : IHasItemFields
{
bool? EnableImages { get; set; }
bool? EnableUserData { get; set; }
10 years ago
int? ImageTypeLimit { get; set; }
string EnableImageTypes { get; set; }
}
}