We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04c65e3 commit 7cea9b7Copy full SHA for 7cea9b7
1 file changed
Jellyfin.Plugin.TvHeadendApi/Service/LiveTvService.cs
@@ -325,8 +325,10 @@ public async Task<IEnumerable<ChannelInfo>> GetChannelsAsync(CancellationToken c
325
{
326
try
327
328
+ // Define the query limit and construct the API URL
329
+ const int limit = 10000;
330
// Build the URL for the API endpoint
- var url = ConstructUrl("api/channel/grid");
331
+ var url = ConstructUrl("api/channel/grid?limit={limit}");
332
333
// Log the URL being used for the API call (sensitive data is masked)
334
_logger.LogInformation("Fetching channels from TVHeadEnd at {Url}...", MaskSensitiveData(url));
0 commit comments