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

22 lines
473 B

namespace MediaBrowser.Model.Entities
{
/// <summary>
/// Class ParentalRating
/// </summary>
public class ParentalRating
{
/// <summary>
/// Gets or sets the name.
/// </summary>
/// <value>The name.</value>
public string Name { get; set; }
/// <summary>
/// Gets or sets the value.
/// </summary>
/// <value>The value.</value>
public int Value { get; set; }
}
}