From d8ce4141ff09d39f03fdf0bbc47fec953f3902e4 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sun, 15 Dec 2013 11:53:32 -0500 Subject: change chapter image location and cleanup dead files --- MediaBrowser.Server.Implementations/LiveTv/LiveTvManager.cs | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'MediaBrowser.Server.Implementations/LiveTv') diff --git a/MediaBrowser.Server.Implementations/LiveTv/LiveTvManager.cs b/MediaBrowser.Server.Implementations/LiveTv/LiveTvManager.cs index 37794cb3da..e06b99999a 100644 --- a/MediaBrowser.Server.Implementations/LiveTv/LiveTvManager.cs +++ b/MediaBrowser.Server.Implementations/LiveTv/LiveTvManager.cs @@ -420,14 +420,20 @@ namespace MediaBrowser.Server.Implementations.LiveTv { var info = _tvDtoService.GetTimerInfo(timer); - return ActiveService.UpdateTimerAsync(info, cancellationToken); + var service = GetServices(timer.ServiceName, null) + .First(); + + return service.UpdateTimerAsync(info, cancellationToken); } public Task UpdateSeriesTimer(SeriesTimerInfoDto timer, CancellationToken cancellationToken) { var info = _tvDtoService.GetSeriesTimerInfo(timer); - return ActiveService.UpdateSeriesTimerAsync(info, cancellationToken); + var service = GetServices(timer.ServiceName, null) + .First(); + + return service.UpdateSeriesTimerAsync(info, cancellationToken); } public async Task> GetSeriesTimers(SeriesTimerQuery query, CancellationToken cancellationToken) -- cgit v1.2.3