Just one Application Version header

(cherry picked from commit ab502ffda41aaae8bccaa4f33c62e3fca61b277f)
This commit is contained in:
Mark McDowall 2021-03-07 14:47:09 -08:00 committed by Qstick
parent 10205da1c3
commit fe2af13fae
1 changed files with 2 additions and 2 deletions

View File

@ -16,9 +16,9 @@ namespace Radarr.Http.Extensions.Pipelines
private void Handle(NancyContext context)
{
if (!context.Response.Headers.ContainsKey("X-ApplicationVersion"))
if (!context.Response.Headers.ContainsKey("X-Application-Version"))
{
context.Response.Headers.Add("X-ApplicationVersion", BuildInfo.Version.ToString());
context.Response.Headers.Add("X-Application-Version", BuildInfo.Version.ToString());
}
}
}