diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2021-11-08 07:46:51 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-08 07:46:51 +0100 |
| commit | 0ee43f897b4c06c23cb741e85908527a46687769 (patch) | |
| tree | 20762ea3a72ff6ae8bdd65a501685216ee279f2b /Emby.Server.Implementations/ApplicationHost.cs | |
| parent | 195831ad4a538e0a44714dfdc31bd007ab5c3e66 (diff) | |
| parent | 666e95e27f92eabb15d6ab7ae399bdbb95eeb318 (diff) | |
Merge pull request #5918 from crobibero/client-logger
Add endpoint to log client events
Diffstat (limited to 'Emby.Server.Implementations/ApplicationHost.cs')
| -rw-r--r-- | Emby.Server.Implementations/ApplicationHost.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs index 512700ac2..f359ee44c 100644 --- a/Emby.Server.Implementations/ApplicationHost.cs +++ b/Emby.Server.Implementations/ApplicationHost.cs @@ -56,6 +56,7 @@ using MediaBrowser.Common.Updates; using MediaBrowser.Controller; using MediaBrowser.Controller.Channels; using MediaBrowser.Controller.Chapters; +using MediaBrowser.Controller.ClientEvent; using MediaBrowser.Controller.Collections; using MediaBrowser.Controller.Configuration; using MediaBrowser.Controller.Dlna; @@ -665,7 +666,7 @@ namespace Emby.Server.Implementations serviceCollection.AddScoped<MediaInfoHelper>(); serviceCollection.AddScoped<AudioHelper>(); serviceCollection.AddScoped<DynamicHlsHelper>(); - + serviceCollection.AddScoped<IClientEventLogger, ClientEventLogger>(); serviceCollection.AddSingleton<IDirectoryService, DirectoryService>(); } |
