mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-18 21:35:51 -04:00
AddApplicationVersionHeader is a bit less wasteful.
This commit is contained in:
@@ -1,4 +1,5 @@
|
|||||||
using System;
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Microsoft.Owin;
|
using Microsoft.Owin;
|
||||||
using NzbDrone.Common.EnvironmentInfo;
|
using NzbDrone.Common.EnvironmentInfo;
|
||||||
@@ -18,13 +19,17 @@ namespace NzbDrone.Host.Owin.MiddleWare
|
|||||||
|
|
||||||
public class AddApplicationVersionHeader : OwinMiddleware
|
public class AddApplicationVersionHeader : OwinMiddleware
|
||||||
{
|
{
|
||||||
|
private readonly KeyValuePair<string, string[]> _versionHeader;
|
||||||
|
|
||||||
public AddApplicationVersionHeader(OwinMiddleware next)
|
public AddApplicationVersionHeader(OwinMiddleware next)
|
||||||
: base(next)
|
: base(next)
|
||||||
{
|
{
|
||||||
|
_versionHeader = new KeyValuePair<string, string[]>("X-ApplicationVersion",
|
||||||
|
new[] { BuildInfo.Version.ToString() });
|
||||||
}
|
}
|
||||||
public override Task Invoke(IOwinContext context)
|
public override Task Invoke(IOwinContext context)
|
||||||
{
|
{
|
||||||
context.Response.Headers.Add("X-ApplicationVersion", new string[] { BuildInfo.Version.ToString() });
|
context.Response.Headers.Add(_versionHeader);
|
||||||
return Next.Invoke(context);
|
return Next.Invoke(context);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user