Update HttpContextAccessor.cs

This commit is contained in:
jtkech
2016-02-10 05:08:19 +01:00
parent 47a1dbaaa2
commit 920d577bb2

View File

@@ -32,7 +32,7 @@ namespace Orchard.Mvc {
_httpContext = httpContext;
}
private static bool IsBackgroundHttpContext(HttpContext httpContext) {
internal static bool IsBackgroundHttpContext(HttpContext httpContext) {
return httpContext == null || httpContext.Items.Contains(MvcModule.IsBackgroundHttpContextKey);
}