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/b9d17c9bc765a0c59d81db6277300a6860bf8421/MediaBrowser.Controller/Entities/IHasCriticRating.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Interface IHasCriticRating
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IHasCriticRating
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the critic rating.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The critic rating.</value>
|
|
|
|
|
float? CriticRating { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the critic rating summary.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The critic rating summary.</value>
|
|
|
|
|
string CriticRatingSummary { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|