aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/Filters
diff options
context:
space:
mode:
authorJPVenson <github@jpb.email>2025-03-24 16:56:36 +0000
committerJPVenson <github@jpb.email>2025-03-24 16:56:36 +0000
commitdaf8eca8ae7010b52538eb7bb32b82075ea0ecdc (patch)
tree013d561c2f9e60a569b2a97490b5a40fe2ff44b0 /Jellyfin.Server/Filters
parenta026a3722c5ee6505b6361cee1da073393c21717 (diff)
update header api description and values
Diffstat (limited to 'Jellyfin.Server/Filters')
-rw-r--r--Jellyfin.Server/Filters/RetryOnTemporarlyUnavailableFilter.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Jellyfin.Server/Filters/RetryOnTemporarlyUnavailableFilter.cs b/Jellyfin.Server/Filters/RetryOnTemporarlyUnavailableFilter.cs
index 584519441..74470eda0 100644
--- a/Jellyfin.Server/Filters/RetryOnTemporarlyUnavailableFilter.cs
+++ b/Jellyfin.Server/Filters/RetryOnTemporarlyUnavailableFilter.cs
@@ -16,11 +16,11 @@ internal class RetryOnTemporarlyUnavailableFilter : IOperationFilter
Headers = new Dictionary<string, OpenApiHeader>()
{
{
- "retry-after",
- new() { AllowEmptyValue = true, Required = false, Description = "A hint for when to retry the operation in full secounds." }
+ "Retry-After",
+ new() { AllowEmptyValue = true, Required = false, Description = "A hint for when to retry the operation in full seconds." }
},
{
- "message",
+ "Message",
new() { AllowEmptyValue = true, Required = false, Description = "A short plain-text reason why the server is not available." }
}
},