Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/f18f13326e2b5c6099e7f762c2bacf7ebb616348 You should set ROOT_URL correctly, otherwise the web may not work correctly.

AddApplicationVersionHeader is a bit less wasteful.

pull/4/head
kayone 11 years ago
parent 3a90cc35c2
commit f18f13326e

@ -1,4 +1,5 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Microsoft.Owin;
using NzbDrone.Common.EnvironmentInfo;
@ -18,13 +19,17 @@ namespace NzbDrone.Host.Owin.MiddleWare
public class AddApplicationVersionHeader : OwinMiddleware
{
private readonly KeyValuePair<string, string[]> _versionHeader;
public AddApplicationVersionHeader(OwinMiddleware next)
: base(next)
{
_versionHeader = new KeyValuePair<string, string[]>("X-ApplicationVersion",
new[] { BuildInfo.Version.ToString() });
}
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);
}
}

Loading…
Cancel
Save