Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/blame/commit/167549f5f1563c5d7bcb4808b08231be0f924528/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;
6 years ago
namespace MediaBrowser.Controller.Plugins
{
/// <summary>
/// Interface IServerEntryPoint
/// </summary>
public interface IServerEntryPoint : IDisposable
{
/// <summary>
/// Runs this instance.
/// </summary>
Task RunAsync();
6 years ago
}
public interface IRunBeforeStartup
{
}
}