continue loop after logging warning when null

This commit is contained in:
ChristophNZ
2018-02-22 16:19:21 +10:00
parent 0d05d0bf34
commit 1e17d6a527

View File

@@ -850,6 +850,8 @@ namespace Umbraco.Core.Services
string.Format(
"Packager: Error handling DocumentType structure. DocumentType with alias '{0}' could not be found and was not added to the structure for '{1}'.",
alias, contentType.Alias));
continue;
}
if (allowedChildren.Any(x => x.Id.IsValueCreated && x.Id.Value == allowedChild.Id)) continue;