From c4c3e9ea4d8fa96cbddf6a12f7ec2d48ed181d2b Mon Sep 17 00:00:00 2001 From: Shadowghost Date: Sat, 21 Feb 2026 11:40:18 +0100 Subject: Fix batch requests --- src/Jellyfin.LiveTv/Listings/SchedulesDirect.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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); -- cgit v1.2.3