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/9148820d89ff58b53c8fa6d8ced33c025187dd12/MediaBrowser.Common/Updates/InstallationFailedEventArgs.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Common/Updates/InstallationFailedEventArgs.cs

13 lines
237 B

#nullable disable
#pragma warning disable CS1591
using System;
namespace MediaBrowser.Common.Updates
{
public class InstallationFailedEventArgs : InstallationEventArgs
{
public Exception Exception { get; set; }
}
}