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 e4983af commit 2545a8bCopy full SHA for 2545a8b
src/UmbracoFileSystemProviders.Azure/AzureFileSystem.cs
@@ -695,7 +695,7 @@ private string FixPath(string path)
695
}
696
697
string appVirtualPath = this.ApplicationVirtualPath;
698
- if (path.StartsWith(appVirtualPath))
+ if (appVirtualPath != null && path.StartsWith(appVirtualPath))
699
{
700
path = path.Substring(appVirtualPath.Length);
701
0 commit comments