Skip to content

Commit

Permalink
修复路径没转义
Browse files Browse the repository at this point in the history
  • Loading branch information
akof1314 committed Jul 19, 2019
1 parent faf22c9 commit 9222c63
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ protected void MergeAssetInfo(AssetInfo rootInfo, List<AssetInfo> infoList)
{
foreach (var info in infoList)
{
var parent = FindAssetInfo(rootInfo, Path.GetDirectoryName(info.fileRelativePath));
var parent = FindAssetInfo(rootInfo, PathToStandardized(Path.GetDirectoryName(info.fileRelativePath)));
if (parent != null)
{
parent.AddChild(info);
Expand Down

0 comments on commit 9222c63

Please sign in to comment.