diff options
| author | Bond-009 <bond.009@outlook.com> | 2024-03-17 18:00:10 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-17 18:00:10 +0100 |
| commit | adb08c0aaa5c35629cf19f01b825c60d99ad2a0c (patch) | |
| tree | e5404cbf08f46ff22d2e6c75031c612d1e7ff0b2 /Emby.Server.Implementations/ApplicationHost.cs | |
| parent | 8070aabe1bb6fad0f42c33a785ffafe94bcfc329 (diff) | |
| parent | 651681c27630af0fd0852980ac473ce570805dc3 (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.cs | 2 |
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); |
