Changes Set to Populate, changes Fetch to Query and makes GetById public

This commit is contained in:
Shannon
2018-03-21 11:31:30 +11:00
parent af0a03a3e0
commit ff31cd9f72
5 changed files with 6 additions and 6 deletions

View File

@@ -366,7 +366,7 @@ namespace Umbraco.Web.PublishedCache.XmlPublishedCache
var xml = GetXml(umbracoContext, false);
var nav = xml.CreateNavigator();
var iter = nav.SelectDescendants(XPathNodeType.Element, true);
_idkMap.Set(Enumerate(iter), UmbracoObjectTypes.Document);
_idkMap.Populate(Enumerate(iter), UmbracoObjectTypes.Document);
}
}