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/a55e6b7fbcd54df3030d538005c01344e8f5d0e1/MediaBrowser.Providers/Manager/RefreshResult.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Providers/Manager/RefreshResult.cs

16 lines
309 B

#pragma warning disable CS1591
using MediaBrowser.Controller.Library;
namespace MediaBrowser.Providers.Manager
{
public class RefreshResult
{
public ItemUpdateType UpdateType { get; set; }
public string? ErrorMessage { get; set; }
public int Failures { get; set; }
}
}