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/b49d523fdbd22608a652504e4e68e0bd01defe0c/MediaBrowser.Common/IDependencyContainer.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Common
|
|
|
|
|
{
|
|
|
|
|
public interface IDependencyContainer
|
|
|
|
|
{
|
|
|
|
|
void RegisterSingleInstance<T>(T obj, bool manageLifetime = true)
|
|
|
|
|
where T : class;
|
|
|
|
|
|
|
|
|
|
void RegisterSingleInstance<T>(Func<T> func)
|
|
|
|
|
where T : class;
|
|
|
|
|
|
|
|
|
|
void Register(Type typeInterface, Type typeImplementation);
|
|
|
|
|
}
|
|
|
|
|
}
|