Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/d296a1f6d0ee8cb48c2234aa9666d01035cd18b5
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
5 additions and
16 deletions
@ -1387,25 +1387,14 @@ namespace Emby.Server.Implementations
public IEnumerable < Assembly > GetApiPluginAssemblies ( )
{
var assemblies = new List < Assembly > ( ) ;
try
{
var types = _allConcreteTypes
. Where ( i = > typeof ( ControllerBase ) . IsAssignableFrom ( i ) )
// .Select(i => ActivatorUtilities.CreateInstance(ServiceProvider, i))
. ToArray ( ) ;
var types = _allConcreteTypes
. Where ( i = > typeof ( ControllerBase ) . IsAssignableFrom ( i ) ) ;
foreach ( var variable in types )
{
assemblies . Add ( variable . Assembly ) ;
}
}
catch ( Exception ex )
foreach ( var type in types )
{
// ignore
Logger . LogDebug ( "Found API endpoints in plugin " + type . Assembly . FullName ) ;
yield return type . Assembly ;
}
return assemblies ;
}
public virtual void LaunchUrl ( string url )