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/20cbbd4f4c99d9a603756f83e0132caa71c16c13/MediaBrowser.Controller/Plugins/IServerEntryPoint.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Controller/Plugins/IServerEntryPoint.cs

22 lines
384 B

using System;
using System.Threading.Tasks;
namespace MediaBrowser.Controller.Plugins
{
/// <summary>
/// Interface IServerEntryPoint
/// </summary>
public interface IServerEntryPoint : IDisposable
{
/// <summary>
/// Runs this instance.
/// </summary>
Task RunAsync();
}
public interface IRunBeforeStartup
{
}
}