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

15 lines
303 B

#pragma warning disable CS1591
using System;
using MediaBrowser.Model.Updates;
namespace MediaBrowser.Common.Updates
{
public class InstallationEventArgs : EventArgs
{
public InstallationInfo InstallationInfo { get; set; }
public VersionInfo VersionInfo { get; set; }
}
}