Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/8349b1f83ac77dc214085e4df70a1a5c5bef3909 You should set ROOT_URL correctly, otherwise the web may not work correctly.

updated get epg

pull/702/head
Luke Pulverenti 12 years ago
parent 78e6304ac0
commit 8349b1f83a

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

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

Loading…
Cancel
Save