Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/c555920fe79bdc350eb3b246dc0b7d6b73318726
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
18 additions and
11 deletions
@ -462,5 +462,16 @@ namespace MediaBrowser.Common.Kernel
/// <value>The resource pools.</value>
public ResourcePool ResourcePools { get ; set ; }
/// <summary>
/// Removes the plugin.
/// </summary>
/// <param name="plugin">The plugin.</param>
public void RemovePlugin ( IPlugin plugin )
{
var list = Plugins . ToList ( ) ;
list . Remove ( plugin ) ;
Plugins = list ;
}
}
}
@ -123,5 +123,12 @@ namespace MediaBrowser.Common.Kernel
/// </summary>
/// <value>The resource pools.</value>
ResourcePool ResourcePools { get ; set ; }
/// <summary>
/// Removes the plugin.
/// </summary>
/// <param name="plugin">The plugin.</param>
void RemovePlugin ( IPlugin plugin ) ;
}
}
@ -536,17 +536,6 @@ namespace MediaBrowser.Controller
} ) ;
}
/// <summary>
/// Removes the plugin.
/// </summary>
/// <param name="plugin">The plugin.</param>
internal void RemovePlugin ( IPlugin plugin )
{
var list = Plugins . ToList ( ) ;
list . Remove ( plugin ) ;
Plugins = list ;
}
/// <summary>
/// Gets the system info.
/// </summary>