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/972aaba66eb65a46e7fe8ee1cdd8a64286a87b82/MediaBrowser.Model/Querying/ItemsResult.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Model/Querying/ItemsResult.cs

12 lines
232 B

using MediaBrowser.Model.Dto;
namespace MediaBrowser.Model.Querying
{
/// <summary>
/// Represents the result of a query for items
/// </summary>
public class ItemsResult : QueryResult<BaseItemDto>
{
}
}