Skip to content

Commit 0691160

Browse files
committed
Revert part of PR #73 as currently the VPP doesn't work with normal installs
1 parent b541db2 commit 0691160

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/UmbracoFileSystemProviders.Azure/FileSystemVirtualPathProvider.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,8 @@ private string FormatVirtualPathPrefix(string prefix)
183183
prefix = prefix.Replace("\\", "/");
184184
prefix = prefix.StartsWith("/") ? prefix : string.Concat("/", prefix);
185185
prefix = prefix.EndsWith("/") ? prefix : string.Concat(prefix, "/");
186-
return HttpRuntime.AppDomainAppVirtualPath + prefix;
186+
return prefix;
187+
// return HttpRuntime.AppDomainAppVirtualPath + prefix;
187188
}
188189

189190
/// <summary>

0 commit comments

Comments
 (0)