diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-01-21 15:27:07 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-01-21 15:27:07 -0500 |
| commit | 2ef30a3ba85190adb38ad7b2f360c2018cd0a5ff (patch) | |
| tree | 99bceeee3e86def1c651ad209416202a67db7daa /Emby.Server.Implementations/EntryPoints/SystemEvents.cs | |
| parent | 0bf95da493e91b6713f9b3ec76d6c9659a04ec10 (diff) | |
update program titles
Diffstat (limited to 'Emby.Server.Implementations/EntryPoints/SystemEvents.cs')
| -rw-r--r-- | Emby.Server.Implementations/EntryPoints/SystemEvents.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/EntryPoints/SystemEvents.cs b/Emby.Server.Implementations/EntryPoints/SystemEvents.cs index 021ae47ec..4ab6d32f3 100644 --- a/Emby.Server.Implementations/EntryPoints/SystemEvents.cs +++ b/Emby.Server.Implementations/EntryPoints/SystemEvents.cs @@ -6,15 +6,16 @@ using System.Threading.Tasks; using MediaBrowser.Model.System; using MediaBrowser.Controller.Plugins; using MediaBrowser.Common; +using MediaBrowser.Controller; namespace Emby.Server.Implementations.EntryPoints { public class SystemEvents : IServerEntryPoint { private readonly ISystemEvents _systemEvents; - private readonly IApplicationHost _appHost; + private readonly IServerApplicationHost _appHost; - public SystemEvents(ISystemEvents systemEvents, IApplicationHost appHost) + public SystemEvents(ISystemEvents systemEvents, IServerApplicationHost appHost) { _systemEvents = systemEvents; _appHost = appHost; |
