fixes build

This commit is contained in:
Shannon
2019-10-09 16:07:43 +11:00
parent cf9add767a
commit 4c344fcb9e

View File

@@ -298,7 +298,7 @@ namespace Umbraco.Core.Persistence.Repositories.Implement
return dtos.ToDictionary(
x => (Udi)new GuidUdi(ObjectTypes.GetUdiType(x.NodeDto.NodeObjectType.Value), x.NodeDto.UniqueId).EnsureClosed(),
x => (IEnumerable<string>)x.PropertyTypes.Select(x => x.Alias).ToList());
x => (IEnumerable<string>)x.PropertyTypes.Select(p => p.Alias).ToList());
}
private string EnsureUniqueNodeName(string nodeName, int id = 0)