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/4beb41fea8fe8d97220668752b312db84f3fa421/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);
}
}