diff options
| author | Mark Monteiro <marknr.monteiro@protonmail.com> | 2020-03-03 01:10:26 +0100 |
|---|---|---|
| committer | Mark Monteiro <marknr.monteiro@protonmail.com> | 2020-03-03 01:10:26 +0100 |
| commit | a4bf645ba5f878f23ce2ba916121fddd6b981968 (patch) | |
| tree | a27041315c1fef4aa5e45e8f3e087d8e0af1be0c | |
| parent | 9a6c27947353585391e211aa88b925f81e8cd7b9 (diff) | |
Fix compilation error
| -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 1e7bbd704..679ef4851 100644 --- a/Emby.Server.Implementations/ApplicationHost.cs +++ b/Emby.Server.Implementations/ApplicationHost.cs @@ -673,7 +673,7 @@ namespace Emby.Server.Implementations serviceCollection.AddSingleton(JsonSerializer); // TODO: Support for injecting ILogger should be deprecated in favour of ILogger<T> and this removed - serviceCollection.AddSingleton<ILogger>(_logger); + serviceCollection.AddSingleton<ILogger>(Logger); serviceCollection.AddSingleton(FileSystemManager); serviceCollection.AddSingleton<TvDbClientManager>(); |
