We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b541db2 commit 0691160Copy full SHA for 0691160
src/UmbracoFileSystemProviders.Azure/FileSystemVirtualPathProvider.cs
@@ -183,7 +183,8 @@ private string FormatVirtualPathPrefix(string prefix)
183
prefix = prefix.Replace("\\", "/");
184
prefix = prefix.StartsWith("/") ? prefix : string.Concat("/", prefix);
185
prefix = prefix.EndsWith("/") ? prefix : string.Concat(prefix, "/");
186
- return HttpRuntime.AppDomainAppVirtualPath + prefix;
+ return prefix;
187
+ // return HttpRuntime.AppDomainAppVirtualPath + prefix;
188
}
189
190
/// <summary>
0 commit comments