diff options
| author | Sven Van den brande <sven.vandenbrande@outlook.com> | 2013-11-10 22:47:26 +0100 |
|---|---|---|
| committer | Sven Van den brande <sven.vandenbrande@outlook.com> | 2013-11-10 22:47:26 +0100 |
| commit | e4564ac8607e45534bfb8132ccb410eab04f5528 (patch) | |
| tree | f2c47b300578a5908bf1fa068b92393ba52790a1 /MediaBrowser.Api | |
| parent | 1f0fc33a862cc7d06cb0ea8429c8bdbb6bd93568 (diff) | |
Update LiveTvService (Channels and Recording)
Diffstat (limited to 'MediaBrowser.Api')
| -rw-r--r-- | MediaBrowser.Api/LiveTv/LiveTvService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Api/LiveTv/LiveTvService.cs b/MediaBrowser.Api/LiveTv/LiveTvService.cs index 6a8457ecb2..6a914a35f8 100644 --- a/MediaBrowser.Api/LiveTv/LiveTvService.cs +++ b/MediaBrowser.Api/LiveTv/LiveTvService.cs @@ -97,7 +97,7 @@ namespace MediaBrowser.Api.LiveTv var recordings = await Task.WhenAll(tasks).ConfigureAwait(false); - return recordings.SelectMany(i => i); + return recordings.SelectMany(i => i).Select(_liveTvManager.GetRecordingInfo); } public object Get(GetEpg request) |
