diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-12-15 11:53:32 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-12-15 11:53:32 -0500 |
| commit | d8ce4141ff09d39f03fdf0bbc47fec953f3902e4 (patch) | |
| tree | bfa9b87131318b67c88acc9f8f39d832f2fe52b2 /MediaBrowser.Server.Implementations/LiveTv | |
| parent | 17c4a8461f308655dbd6a625a81565f2604787b9 (diff) | |
change chapter image location and cleanup dead files
Diffstat (limited to 'MediaBrowser.Server.Implementations/LiveTv')
| -rw-r--r-- | MediaBrowser.Server.Implementations/LiveTv/LiveTvManager.cs | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/MediaBrowser.Server.Implementations/LiveTv/LiveTvManager.cs b/MediaBrowser.Server.Implementations/LiveTv/LiveTvManager.cs index 37794cb3d..e06b99999 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<QueryResult<SeriesTimerInfoDto>> GetSeriesTimers(SeriesTimerQuery query, CancellationToken cancellationToken) |
