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 f06800c commit 86b381cCopy full SHA for 86b381c
src/UmbracoFileSystemProviders.Azure/AzureFileSystem.cs
@@ -694,6 +694,8 @@ private string FixPath(string path)
694
return string.Empty;
695
}
696
697
+ path = path.Replace("\\", Delimiter);
698
+
699
string appVirtualPath = this.ApplicationVirtualPath;
700
if (appVirtualPath != null && path.StartsWith(appVirtualPath))
701
{
@@ -728,7 +730,7 @@ private string FixPath(string path)
728
730
path = path.Substring(1);
729
731
732
- return path.Replace("\\", Delimiter).TrimStart(Delimiter.ToCharArray()).TrimEnd(Delimiter.ToCharArray());
733
+ return path.TrimStart(Delimiter.ToCharArray()).TrimEnd(Delimiter.ToCharArray());
734
735
736
0 commit comments