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/4283a5e854e974fe8c5a39b88331e4d71ca10e31/MediaBrowser.Controller/Session/ISessionControllerFactory.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Controller/Session/ISessionControllerFactory.cs

17 lines
453 B

namespace MediaBrowser.Controller.Session
{
/// <summary>
/// Interface ISesssionControllerFactory
/// </summary>
public interface ISessionControllerFactory
{
/// <summary>
/// Gets the session controller.
/// </summary>
/// <param name="session">The session.</param>
/// <returns>ISessionController.</returns>
ISessionController GetSessionController(SessionInfo session);
}
}