aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorShadowghost <Ghost_of_Stone@web.de>2026-02-21 11:40:18 +0100
committerShadowghost <Ghost_of_Stone@web.de>2026-02-21 11:40:18 +0100
commitc4c3e9ea4d8fa96cbddf6a12f7ec2d48ed181d2b (patch)
tree46956be72e7234eede538030f7b768f4ece3dba8 /src
parent679664ca28c9ac49f30ba73e2aaa4ad0684d40dd (diff)
Fix batch requests
Diffstat (limited to 'src')
-rw-r--r--src/Jellyfin.LiveTv/Listings/SchedulesDirect.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Jellyfin.LiveTv/Listings/SchedulesDirect.cs b/src/Jellyfin.LiveTv/Listings/SchedulesDirect.cs
index 083858ebaf..54e4d64eb8 100644
--- a/src/Jellyfin.LiveTv/Listings/SchedulesDirect.cs
+++ b/src/Jellyfin.LiveTv/Listings/SchedulesDirect.cs
@@ -466,7 +466,7 @@ namespace Jellyfin.LiveTv.Listings
{
var batch = programIds.Skip(i).Take(BatchSize);
- using var message = new HttpRequestMessage(HttpMethod.Post, ApiUrl + "/metadata/programs");
+ using var message = new HttpRequestMessage(HttpMethod.Post, ApiUrl + "/metadata/programs/");
message.Headers.TryAddWithoutValidation("token", token);
message.Content = JsonContent.Create(batch, options: _jsonOptions);