diff options
| author | Archie <3836@iona.vic.edu.au> | 2025-06-27 09:49:07 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-26 17:49:07 -0600 |
| commit | d5a76bdff8fa7c7771f4bb5d64c4e0ac254e8927 (patch) | |
| tree | f60fd3b70b669ba175b2b6e28e523cf88e50fa5e /Jellyfin.Server/Filters | |
| parent | ebdc756547ece276b9051226903d2d6794fe6e2b (diff) | |
Changed misspell of 'temporarily' in 503 response (#14377)
Diffstat (limited to 'Jellyfin.Server/Filters')
| -rw-r--r-- | Jellyfin.Server/Filters/RetryOnTemporarilyUnavailableFilter.cs (renamed from Jellyfin.Server/Filters/RetryOnTemporarlyUnavailableFilter.cs) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Jellyfin.Server/Filters/RetryOnTemporarlyUnavailableFilter.cs b/Jellyfin.Server/Filters/RetryOnTemporarilyUnavailableFilter.cs index 74470eda0..fef5577a1 100644 --- a/Jellyfin.Server/Filters/RetryOnTemporarlyUnavailableFilter.cs +++ b/Jellyfin.Server/Filters/RetryOnTemporarilyUnavailableFilter.cs @@ -6,13 +6,13 @@ using Swashbuckle.AspNetCore.SwaggerGen; namespace Jellyfin.Server.Filters; -internal class RetryOnTemporarlyUnavailableFilter : IOperationFilter +internal class RetryOnTemporarilyUnavailableFilter : IOperationFilter { public void Apply(OpenApiOperation operation, OperationFilterContext context) { operation.Responses.Add("503", new OpenApiResponse() { - Description = "The server is currently starting or is temporarly not available.", + Description = "The server is currently starting or is temporarily not available.", Headers = new Dictionary<string, OpenApiHeader>() { { |
