Part 1 of a multi-PR change for Emby.DLNA

This commit is contained in:
BaronGreenback
2020-07-05 17:47:23 +01:00
parent 46f67c9ea4
commit ab10f21027
4 changed files with 54 additions and 3 deletions

View File

@@ -107,6 +107,11 @@ namespace Emby.Server.Implementations.HttpServer
return _appHost.CreateInstance(type);
}
public object CreateInstance(Type type, object parameter)
{
return _appHost.CreateInstance(type, parameter);
}
private static string NormalizeUrlPath(string path)
{
if (path.Length > 0 && path[0] == '/')