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/2828688ced9328b0b4bc688e1146cbf3b4ac11d5/MediaBrowser.Controller/IServerApplicationHost.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Controller/IServerApplicationHost.cs

11 lines
213 B

using MediaBrowser.Common;
using MediaBrowser.Model.System;
namespace MediaBrowser.Controller
{
public interface IServerApplicationHost : IApplicationHost
{
SystemInfo GetSystemInfo();
}
}