Update FileSystemTree.cs

Make sure it can find child items in root folders
This commit is contained in:
Tim Geyssens
2018-10-18 21:28:46 +02:00
committed by Sebastiaan Janssen
parent 10526cfc81
commit 2c14f396fb

View File

@@ -42,8 +42,7 @@ namespace umbraco.cms.presentation.Trees
if (!string.IsNullOrEmpty(this.NodeKey))
{
orgPath = this.NodeKey;
path = IOHelper.MapPath(FilePath + orgPath);
orgPath += "/";
path = IOHelper.MapPath(FilePath+ "/" + orgPath + "/");
}
else
{