Take the community feedback survey now.
                AI OnAI Off
            
        Take the community feedback survey now.
            string path = "/templates/Intranet/Pages/ImageUpload/";
            System.Collections.ICollection col = (System.Collections.ICollection)EPiServer.Web.FriendlyUrlRewriteProvider.UnTouchedPaths;
            lock (col.SyncRoot)
	    {
                EPiServer.Web.FriendlyUrlRewriteProvider.UnTouchedPaths.Add(path);
	    }
And true enough, when I loop through the IList (System.Collections.IList)EPiServer.Web.FriendlyUrlRewriteProvider.UnTouchedPaths anywhere inside my app, I find the path in there.
But EPiServer.Web.FriendlyUrlRewriteProvider.IsFurlEnabled still displays true when I am on a page inside the path, and the component does not still load properly.
Am I doing something wrong?
/Marten