aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Devices/DeviceManager.cs
diff options
context:
space:
mode:
authorMark Monteiro <marknr.monteiro@protonmail.com>2020-03-10 22:45:17 +0100
committerMark Monteiro <marknr.monteiro@protonmail.com>2020-03-10 22:45:17 +0100
commit6131599e8808a6cdddba8ce0da82107cc662ae1c (patch)
treea43499ea871b5770465c0938a2bc20ae923a4d2d /Emby.Server.Implementations/Devices/DeviceManager.cs
parent76957213e601e8f03c9975707d5e0a22b899207b (diff)
parent97bca5a9008ba94411c45572e690decc58805b85 (diff)
Merge branch 'master' into support-injecting-iconfiguration
Diffstat (limited to 'Emby.Server.Implementations/Devices/DeviceManager.cs')
-rw-r--r--Emby.Server.Implementations/Devices/DeviceManager.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Devices/DeviceManager.cs b/Emby.Server.Implementations/Devices/DeviceManager.cs
index 4f8f9f23b..9ac6a1d5e 100644
--- a/Emby.Server.Implementations/Devices/DeviceManager.cs
+++ b/Emby.Server.Implementations/Devices/DeviceManager.cs
@@ -407,7 +407,10 @@ namespace Emby.Server.Implementations.Devices
private readonly IServerConfigurationManager _config;
private ILogger _logger;
- public DeviceManagerEntryPoint(IDeviceManager deviceManager, IServerConfigurationManager config, ILogger logger)
+ public DeviceManagerEntryPoint(
+ IDeviceManager deviceManager,
+ IServerConfigurationManager config,
+ ILogger<DeviceManagerEntryPoint> logger)
{
_deviceManager = (DeviceManager)deviceManager;
_config = config;