aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs
diff options
context:
space:
mode:
authorBaronGreenback <jimcartlidge@yahoo.co.uk>2020-07-05 17:47:23 +0100
committerBaronGreenback <jimcartlidge@yahoo.co.uk>2020-07-05 17:47:23 +0100
commitab10f210274ff46bf68b5af752a817bbd90f749a (patch)
treeccf72eedc9e4cb0c500de6d1976487cd1160f2e3 /Emby.Server.Implementations/HttpServer/HttpListenerHost.cs
parent46f67c9ea4f13e14d5f0b2aa30fdf0e10655c37d (diff)
Part 1 of a multi-PR change for Emby.DLNA
Diffstat (limited to 'Emby.Server.Implementations/HttpServer/HttpListenerHost.cs')
-rw-r--r--Emby.Server.Implementations/HttpServer/HttpListenerHost.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs b/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs
index c3428ee62..6860b7ecd 100644
--- a/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs
+++ b/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs
@@ -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] == '/')