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

54 lines
962 B

namespace MediaBrowser.Model.Entities
{
/// <summary>
/// Enum MetadataFields.
/// </summary>
public enum MetadataField
{
/// <summary>
/// The cast.
/// </summary>
Cast,
/// <summary>
/// The genres.
/// </summary>
Genres,
/// <summary>
/// The production locations.
/// </summary>
ProductionLocations,
/// <summary>
/// The studios.
/// </summary>
Studios,
/// <summary>
/// The tags.
/// </summary>
Tags,
/// <summary>
/// The name.
/// </summary>
Name,
/// <summary>
/// The overview.
/// </summary>
Overview,
/// <summary>
/// The runtime.
/// </summary>
Runtime,
/// <summary>
/// The official rating.
/// </summary>
OfficialRating
}
}