diff options
| author | Shadowghost <Ghost_of_Stone@web.de> | 2026-02-21 11:40:18 +0100 |
|---|---|---|
| committer | Shadowghost <Ghost_of_Stone@web.de> | 2026-02-21 11:40:18 +0100 |
| commit | c4c3e9ea4d8fa96cbddf6a12f7ec2d48ed181d2b (patch) | |
| tree | 46956be72e7234eede538030f7b768f4ece3dba8 | |
| parent | 679664ca28c9ac49f30ba73e2aaa4ad0684d40dd (diff) | |
Fix batch requests
| -rw-r--r-- | src/Jellyfin.LiveTv/Listings/SchedulesDirect.cs | 2 |
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); |
