Post merge - Move files into correct locations

This commit is contained in:
Bjarke Berg
2020-02-20 08:33:28 +01:00
parent e96d094c71
commit 79ee20a45b
7 changed files with 30 additions and 30 deletions

View File

@@ -1,4 +1,4 @@
using System.IO;
using System;
using System.Web;
namespace Umbraco.Web
@@ -9,7 +9,7 @@ namespace Umbraco.Web
{
var httpContext = httpContextAccessor.HttpContext;
if(httpContext is null) throw new IOException("HttpContext is null");
if(httpContext is null) throw new InvalidOperationException("HttpContext is null");
return httpContext;
}