diff options
| author | Anthony Lavado <anthonylavado@me.com> | 2020-08-19 08:17:03 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-19 08:17:03 -0400 |
| commit | 634ee2d1e913277ea8f419aca9d91a8e58426642 (patch) | |
| tree | d521b315893a1daf09da62c55292b3eab00e270e /Emby.Server.Implementations/ApplicationHost.cs | |
| parent | 93fe595e5e9863874c1973e4f2d7f3c85549d3f9 (diff) | |
| parent | 3a722740ceb83d796a7111ae40b2b67d6a313465 (diff) | |
Merge pull request #3861 from crobibero/fixes
API Fixes
Diffstat (limited to 'Emby.Server.Implementations/ApplicationHost.cs')
| -rw-r--r-- | Emby.Server.Implementations/ApplicationHost.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs index 0201ed7a3..99530bfbd 100644 --- a/Emby.Server.Implementations/ApplicationHost.cs +++ b/Emby.Server.Implementations/ApplicationHost.cs @@ -632,6 +632,9 @@ namespace Emby.Server.Implementations serviceCollection.AddSingleton<IAttachmentExtractor, MediaBrowser.MediaEncoding.Attachments.AttachmentExtractor>(); serviceCollection.AddSingleton<TranscodingJobHelper>(); + serviceCollection.AddScoped<MediaInfoHelper>(); + serviceCollection.AddScoped<AudioHelper>(); + serviceCollection.AddScoped<DynamicHlsHelper>(); } /// <summary> |
