diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-01-04 09:34:15 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-01-04 09:34:15 -0500 |
| commit | 5a5ec56328ef3a6ac551543e17a0f0b0e0492cef (patch) | |
| tree | fb353f84d3303a650be8e1444e7dbecee35fbfc0 /MediaBrowser.Server.Implementations/EntryPoints | |
| parent | 3eb4ca598c44be54ec2d98773ff1f66c529b1156 (diff) | |
adjust imdb id parsing
Diffstat (limited to 'MediaBrowser.Server.Implementations/EntryPoints')
| -rw-r--r-- | MediaBrowser.Server.Implementations/EntryPoints/UsageEntryPoint.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/EntryPoints/UsageEntryPoint.cs b/MediaBrowser.Server.Implementations/EntryPoints/UsageEntryPoint.cs index 0e99ee673e..dac0b0d150 100644 --- a/MediaBrowser.Server.Implementations/EntryPoints/UsageEntryPoint.cs +++ b/MediaBrowser.Server.Implementations/EntryPoints/UsageEntryPoint.cs @@ -29,13 +29,14 @@ namespace MediaBrowser.Server.Implementations.EntryPoints private readonly ConcurrentDictionary<Guid, ClientInfo> _apps = new ConcurrentDictionary<Guid, ClientInfo>(); - public UsageEntryPoint(ILogger logger, IApplicationHost applicationHost, INetworkManager networkManager, IHttpClient httpClient, ISessionManager sessionManager) + public UsageEntryPoint(ILogger logger, IApplicationHost applicationHost, INetworkManager networkManager, IHttpClient httpClient, ISessionManager sessionManager, IUserManager userManager) { _logger = logger; _applicationHost = applicationHost; _networkManager = networkManager; _httpClient = httpClient; _sessionManager = sessionManager; + _userManager = userManager; _sessionManager.SessionStarted += _sessionManager_SessionStarted; } |
