diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-05 01:50:48 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-05 01:50:48 -0500 |
| commit | a01ee815fbd4a876ff7edf8f71162b37548e8080 (patch) | |
| tree | 2b997ab3eb58c805dc77529801570b0500bdd509 /MediaBrowser.Server.Implementations | |
| parent | 178d216b28135980c733992ed1cc36e1744d03b7 (diff) | |
added HasUpdateAvailable
Diffstat (limited to 'MediaBrowser.Server.Implementations')
| -rw-r--r-- | MediaBrowser.Server.Implementations/LiveTv/LiveTvManager.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/MediaBrowser.Server.Implementations/LiveTv/LiveTvManager.cs b/MediaBrowser.Server.Implementations/LiveTv/LiveTvManager.cs index 96c424957..131c5c0fb 100644 --- a/MediaBrowser.Server.Implementations/LiveTv/LiveTvManager.cs +++ b/MediaBrowser.Server.Implementations/LiveTv/LiveTvManager.cs @@ -945,5 +945,10 @@ namespace MediaBrowser.Server.Implementations.LiveTv TotalRecordCount = groups.Count }; } + + public Task CloseLiveStream(string id, CancellationToken cancellationToken) + { + return ActiveService.CloseLiveStream(id, cancellationToken); + } } } |
