Register ISubtitleEncoder correctly

This commit is contained in:
Mark Monteiro 2020-04-04 12:26:24 -04:00
parent a37b69a493
commit e9e12b8eb9

View file

@ -845,16 +845,7 @@ namespace Emby.Server.Implementations
AuthService = new AuthService(LoggerFactory.CreateLogger<AuthService>(), authContext, ServerConfigurationManager, SessionManager, NetworkManager);
serviceCollection.AddSingleton(AuthService);
SubtitleEncoder = new MediaBrowser.MediaEncoding.Subtitles.SubtitleEncoder(
LibraryManager,
LoggerFactory.CreateLogger<MediaBrowser.MediaEncoding.Subtitles.SubtitleEncoder>(),
ApplicationPaths,
FileSystemManager,
MediaEncoder,
HttpClient,
MediaSourceManager,
ProcessFactory);
serviceCollection.AddSingleton(SubtitleEncoder);
serviceCollection.AddSingleton<ISubtitleEncoder, MediaBrowser.MediaEncoding.Subtitles.SubtitleEncoder>();
serviceCollection.AddSingleton(typeof(IResourceFileManager), typeof(ResourceFileManager));
serviceCollection.AddSingleton<EncodingHelper>();
@ -880,6 +871,7 @@ namespace Emby.Server.Implementations
public void InitializeServices()
{
HttpServer = Resolve<IHttpServer>();
SubtitleEncoder = Resolve<ISubtitleEncoder>();
}
public static void LogEnvironmentInfo(ILogger logger, IApplicationPaths appPaths)