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

36 lines
703 B

12 years ago

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;
}
}
}
}