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/52e9dc66f5c2051a5e4b7f62ff7f2469cfa4da61/MediaBrowser.Model/Session/BrowseRequest.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Model/Session/BrowseRequest.cs

29 lines
769 B

#nullable disable
6 years ago
namespace MediaBrowser.Model.Session
{
/// <summary>
/// Class BrowseRequest.
6 years ago
/// </summary>
public class BrowseRequest
{
/// <summary>
/// Gets or sets the item type.
/// Artist, Genre, Studio, Person, or any kind of BaseItem.
6 years ago
/// </summary>
/// <value>The type of the item.</value>
public string ItemType { get; set; }
/// <summary>
/// Gets or sets the item id.
/// </summary>
/// <value>The item id.</value>
public string ItemId { get; set; }
/// <summary>
/// Gets or sets the name of the item.
/// </summary>
/// <value>The name of the item.</value>
public string ItemName { get; set; }
}
}