diff options
| author | Bond-009 <bond.009@outlook.com> | 2019-03-07 22:54:02 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-03-07 22:54:02 +0100 |
| commit | 757e0194b9985c204a4dcfb105f091fd1100bb44 (patch) | |
| tree | aa2cd8253d58b6d9264c37fcece7430a3cf16ec6 /Emby.Server.Implementations/ApplicationHost.cs | |
| parent | 669c48cc8bd6b9023d54a38c8e8b7f4120cb7368 (diff) | |
| parent | e3b844b5aa34ef6a8f4a23c053115f4eabadcbf7 (diff) | |
Merge pull request #1067 from cvium/add_urlprefixes
Add urlprefixes during init
Diffstat (limited to 'Emby.Server.Implementations/ApplicationHost.cs')
| -rw-r--r-- | Emby.Server.Implementations/ApplicationHost.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs index a581214c7..f7d9bad1b 100644 --- a/Emby.Server.Implementations/ApplicationHost.cs +++ b/Emby.Server.Implementations/ApplicationHost.cs @@ -1056,7 +1056,7 @@ namespace Emby.Server.Implementations .Where(i => i != null) .ToArray(); - HttpServer.Init(GetExports<IService>(false), GetExports<IWebSocketListener>()); + HttpServer.Init(GetExports<IService>(false), GetExports<IWebSocketListener>(), GetUrlPrefixes()); LibraryManager.AddParts(GetExports<IResolverIgnoreRule>(), GetExports<IItemResolver>(), |
