ensure that we don't CreateModel during cache notification
This commit is contained in:
@@ -883,7 +883,7 @@ namespace Umbraco.Web.PublishedCache.NuCache
|
||||
return true;
|
||||
var link = GetParentLink(kit.Node);
|
||||
var node = link?.Value;
|
||||
return node?.PublishedModel != null;
|
||||
return node != null && node.HasPublished;
|
||||
}
|
||||
|
||||
private ContentNode GenCloneLocked(LinkedNode<ContentNode> link)
|
||||
|
||||
Reference in New Issue
Block a user