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/22ada9b23725670e1bb2e07e587fb1d44832c96c/MediaBrowser.Server.Implementations/LiveTv/EmbyTV/EntryPoint.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.

17 lines
300 B

using MediaBrowser.Controller.Plugins;
namespace MediaBrowser.Server.Implementations.LiveTv.EmbyTV
{
public class EntryPoint : IServerEntryPoint
{
public void Run()
{
EmbyTV.Current.Start();
}
public void Dispose()
{
}
}
}