updated get epg

This commit is contained in:
Luke Pulverenti 2013-11-11 15:17:35 -05:00
parent 78e6304ac0
commit 8349b1f83a
2 changed files with 3 additions and 3 deletions

View File

@ -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();

View File

@ -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);
}
}