diff options
| author | Luke <luke.pulverenti@gmail.com> | 2017-11-05 16:52:08 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-11-05 16:52:08 -0500 |
| commit | cb1a8ba88b20a2c6a6e601197adfa8a8af353150 (patch) | |
| tree | 0e37b05d34dbcbe3d08d0c74229287cd0cd6f496 /Emby.Server.Implementations/ApplicationHost.cs | |
| parent | 2bffe246eb6697efedae7a30e9feeebca1ccf12f (diff) | |
| parent | 5cb74690284105db70a467ab77c2af3f44e42348 (diff) | |
Merge pull request #3004 from MediaBrowser/dev
support track selection before playback
Diffstat (limited to 'Emby.Server.Implementations/ApplicationHost.cs')
| -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 c1ab9ec22..2aeb4b971 100644 --- a/Emby.Server.Implementations/ApplicationHost.cs +++ b/Emby.Server.Implementations/ApplicationHost.cs @@ -996,7 +996,7 @@ namespace Emby.Server.Implementations NotificationManager = new NotificationManager(LogManager, UserManager, ServerConfigurationManager); RegisterSingleInstance(NotificationManager); - SubtitleManager = new SubtitleManager(LogManager.GetLogger("SubtitleManager"), FileSystemManager, LibraryMonitor, LibraryManager, MediaSourceManager); + SubtitleManager = new SubtitleManager(LogManager.GetLogger("SubtitleManager"), FileSystemManager, LibraryMonitor, LibraryManager, MediaSourceManager, ServerConfigurationManager); RegisterSingleInstance(SubtitleManager); RegisterSingleInstance<IDeviceDiscovery>(new DeviceDiscovery(LogManager.GetLogger("IDeviceDiscovery"), ServerConfigurationManager, SocketFactory, TimerFactory)); |
