diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-11-11 15:17:35 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-11-11 15:17:35 -0500 |
| commit | 8349b1f83ac77dc214085e4df70a1a5c5bef3909 (patch) | |
| tree | e8f1b669387d22abc6bb7b27845fb8dca1718f66 | |
| parent | 78e6304ac03f79f1cb104bda1bac3b2e917173a4 (diff) | |
updated get epg
| -rw-r--r-- | MediaBrowser.Api/LiveTv/LiveTvService.cs | 2 | ||||
| -rw-r--r-- | MediaBrowser.Controller/LiveTv/ILiveTvService.cs | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/MediaBrowser.Api/LiveTv/LiveTvService.cs b/MediaBrowser.Api/LiveTv/LiveTvService.cs index 71da40348..0af7df222 100644 --- a/MediaBrowser.Api/LiveTv/LiveTvService.cs +++ b/MediaBrowser.Api/LiveTv/LiveTvService.cs @@ -126,7 +126,7 @@ namespace MediaBrowser.Api.LiveTv return ToOptimizedResult(result); } - private async Task<IEnumerable<EpgFullInfo>> GetEpgAsync(GetEpg request) + private async Task<EpgFullInfo> GetEpgAsync(GetEpg request) { var service = GetServices(request.ServiceName) .First(); diff --git a/MediaBrowser.Controller/LiveTv/ILiveTvService.cs b/MediaBrowser.Controller/LiveTv/ILiveTvService.cs index f7181a99b..8cad0bd35 100644 --- a/MediaBrowser.Controller/LiveTv/ILiveTvService.cs +++ b/MediaBrowser.Controller/LiveTv/ILiveTvService.cs @@ -35,7 +35,7 @@ namespace MediaBrowser.Controller.LiveTv /// </summary> /// <param name="channelId">The channel identifier.</param> /// <param name="cancellationToken">The cancellation token.</param> - /// <returns>Task{IEnumerable{EpgFullInfo}}.</returns> - Task<IEnumerable<EpgFullInfo>> GetEpgAsync(string channelId, CancellationToken cancellationToken); + /// <returns>Task{EpgFullInfo}.</returns> + Task<EpgFullInfo> GetEpgAsync(string channelId, CancellationToken cancellationToken); } } |
