aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/ApplicationHost.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2024-03-17 18:00:10 +0100
committerGitHub <noreply@github.com>2024-03-17 18:00:10 +0100
commitadb08c0aaa5c35629cf19f01b825c60d99ad2a0c (patch)
treee5404cbf08f46ff22d2e6c75031c612d1e7ff0b2 /Emby.Server.Implementations/ApplicationHost.cs
parent8070aabe1bb6fad0f42c33a785ffafe94bcfc329 (diff)
parent651681c27630af0fd0852980ac473ce570805dc3 (diff)
Merge pull request #11149 from Bond-009/nullable4
Enable nullable for more files
Diffstat (limited to 'Emby.Server.Implementations/ApplicationHost.cs')
-rw-r--r--Emby.Server.Implementations/ApplicationHost.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs
index 745753440..acabbb059 100644
--- a/Emby.Server.Implementations/ApplicationHost.cs
+++ b/Emby.Server.Implementations/ApplicationHost.cs
@@ -146,7 +146,7 @@ namespace Emby.Server.Implementations
_startupConfig = startupConfig;
Logger = LoggerFactory.CreateLogger<ApplicationHost>();
- _deviceId = new DeviceId(ApplicationPaths, LoggerFactory);
+ _deviceId = new DeviceId(ApplicationPaths, LoggerFactory.CreateLogger<DeviceId>());
ApplicationVersion = typeof(ApplicationHost).Assembly.GetName().Version;
ApplicationVersionString = ApplicationVersion.ToString(3);