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/3fbf08b8825d7476e7cd87fb922e3aa9245253cc/MediaBrowser.Controller/Entities/Book.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.

36 lines
703 B

namespace MediaBrowser.Controller.Entities
{
public class Book : BaseItem
{
public override string MediaType
{
get
{
return Model.Entities.MediaType.Book;
}
}
public string SeriesName { get; set; }
/// <summary>
///
/// </summary>
public override string MetaLocation
{
get
{
return System.IO.Path.GetDirectoryName(Path);
}
}
protected override bool UseParentPathToCreateResolveArgs
{
get
{
return !IsInMixedFolder;
}
}
}
}