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

39 lines
882 B

using System;
namespace MediaBrowser.Model.Entities
{
public class PackageReviewInfo
{
/// <summary>
/// The package id (database key) for this review
/// </summary>
public int id { get; set; }
/// <summary>
/// The rating value
/// </summary>
public int rating { get; set; }
/// <summary>
/// Whether or not this review recommends this item
/// </summary>
public bool recommend { get; set; }
/// <summary>
/// A short description of the review
/// </summary>
public string title { get; set; }
/// <summary>
/// A full review
/// </summary>
public string review { get; set; }
/// <summary>
/// Time of review
/// </summary>
public DateTime timestamp { get; set; }
}
}