diff options
| author | crobibero <cody@robibe.ro> | 2020-12-10 19:05:49 -0700 |
|---|---|---|
| committer | crobibero <cody@robibe.ro> | 2020-12-10 19:05:49 -0700 |
| commit | 34029f860c1c870e7c50aaa4aaf1188e7e8c72b4 (patch) | |
| tree | 211fe0a36c8a14f14b3bd1aad947f6daa2a62b99 | |
| parent | abcbb9f1569f88f85071f450ba808cb268ba172a (diff) | |
Fix openapi file schema
| -rw-r--r-- | Jellyfin.Server/Filters/FileResponseFilter.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Jellyfin.Server/Filters/FileResponseFilter.cs b/Jellyfin.Server/Filters/FileResponseFilter.cs index 7ad9466c1..eae9a8004 100644 --- a/Jellyfin.Server/Filters/FileResponseFilter.cs +++ b/Jellyfin.Server/Filters/FileResponseFilter.cs @@ -14,7 +14,8 @@ namespace Jellyfin.Server.Filters { Schema = new OpenApiSchema { - Type = "file" + Type = "string", + Format = "binary" } }; |
