diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2022-10-07 15:21:42 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-07 15:21:42 +0200 |
| commit | 05c20001c8767bee90b6f45cb9cc163722ee4fa8 (patch) | |
| tree | 9811f8c5e2760df1db5c8fd19afcc5d9ea0b85f4 /Emby.Server.Implementations/ApplicationHost.cs | |
| parent | b137d0cc2bae86ffed23bdfcf6988c04a3b4d365 (diff) | |
| parent | c36785724444f651c1c24a72fed750e42a4d7b68 (diff) | |
Merge pull request #8381 from 1hitsong/lyric-lrc-file-support
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 9a9de1059..8b7e216e4 100644 --- a/Emby.Server.Implementations/ApplicationHost.cs +++ b/Emby.Server.Implementations/ApplicationHost.cs @@ -67,6 +67,7 @@ using MediaBrowser.Controller.Dto; using MediaBrowser.Controller.Entities; using MediaBrowser.Controller.Library; using MediaBrowser.Controller.LiveTv; +using MediaBrowser.Controller.Lyrics; using MediaBrowser.Controller.MediaEncoding; using MediaBrowser.Controller.Net; using MediaBrowser.Controller.Notifications; @@ -94,6 +95,7 @@ using MediaBrowser.Model.Serialization; using MediaBrowser.Model.System; using MediaBrowser.Model.Tasks; using MediaBrowser.Providers.Chapters; +using MediaBrowser.Providers.Lyric; using MediaBrowser.Providers.Manager; using MediaBrowser.Providers.Plugins.Tmdb; using MediaBrowser.Providers.Subtitles; @@ -598,6 +600,7 @@ namespace Emby.Server.Implementations serviceCollection.AddSingleton<IMediaSourceManager, MediaSourceManager>(); serviceCollection.AddSingleton<ISubtitleManager, SubtitleManager>(); + serviceCollection.AddSingleton<ILyricManager, LyricManager>(); serviceCollection.AddSingleton<IProviderManager, ProviderManager>(); |
