diff options
| author | Cromefire_ <cromefire_@outlook.com> | 2020-08-30 00:44:33 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-30 00:44:33 +0200 |
| commit | 3453b654441b4ef91dd8c2e22ffa535081b87857 (patch) | |
| tree | 04e9bfe32514c529daa795a80c965af178a62d9e | |
| parent | 0424d09b8daf3626fd7de65b601e707afdb00599 (diff) | |
Fixed wrong openapi auth header value
| -rw-r--r-- | Jellyfin.Server/Extensions/ApiServiceCollectionExtensions.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server/Extensions/ApiServiceCollectionExtensions.cs b/Jellyfin.Server/Extensions/ApiServiceCollectionExtensions.cs index 0fd599cfc..f0ae9fbfc 100644 --- a/Jellyfin.Server/Extensions/ApiServiceCollectionExtensions.cs +++ b/Jellyfin.Server/Extensions/ApiServiceCollectionExtensions.cs @@ -197,7 +197,7 @@ namespace Jellyfin.Server.Extensions { Type = SecuritySchemeType.ApiKey, In = ParameterLocation.Header, - Name = "X-Emby-Token", + Name = "X-Emby-Authorization", Description = "API key header parameter" }); |
