diff options
| author | Bond-009 <bond.009@outlook.com> | 2020-04-02 15:50:47 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-02 15:50:47 +0200 |
| commit | 108172c00f822df994b3a27bbc5536ffdcbed09e (patch) | |
| tree | 2fa9d20ad5ffb6bd47d47fe0231d6c787da46aca /MediaBrowser.Controller/Net/IHttpServer.cs | |
| parent | 89448ac055d584470d45892ad14e55c833e1a806 (diff) | |
| parent | 2a521b0f68315a765ee1a970fabdd712739c4f31 (diff) | |
Merge pull request #2637 from mark-monteiro/do-not-instantiate-services-at-startup
Do not instantiate IService instances unecessarily at startup
Diffstat (limited to 'MediaBrowser.Controller/Net/IHttpServer.cs')
| -rw-r--r-- | MediaBrowser.Controller/Net/IHttpServer.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Net/IHttpServer.cs b/MediaBrowser.Controller/Net/IHttpServer.cs index 46933c046..806478864 100644 --- a/MediaBrowser.Controller/Net/IHttpServer.cs +++ b/MediaBrowser.Controller/Net/IHttpServer.cs @@ -32,7 +32,7 @@ namespace MediaBrowser.Controller.Net /// <summary> /// Inits this instance. /// </summary> - void Init(IEnumerable<IService> services, IEnumerable<IWebSocketListener> listener, IEnumerable<string> urlPrefixes); + void Init(IEnumerable<Type> serviceTypes, IEnumerable<IWebSocketListener> listener, IEnumerable<string> urlPrefixes); /// <summary> /// If set, all requests will respond with this message |
