@@ -85,9 +85,9 @@ public static class UmbracoBuilderExtensions
8585 public static IUmbracoBuilder AddCustomContentFinders (this IUmbracoBuilder builder )
8686 {
8787 // Add our custom content finder just before the core ContentFinderByUrl
88- builder .ContentFinders ().InsertBefore <ContentFinderByUrl , MyContentFinder >();
88+ builder .ContentFinders ().InsertBefore <ContentFinderByUrlNew , MyContentFinder >();
8989 // You can also remove content finders, this is not required here though, since our finder runs before the url one
90- builder .ContentFinders ().Remove <ContentFinderByUrl >();
90+ builder .ContentFinders ().Remove <ContentFinderByUrlNew >();
9191 // You use Append to add to the end of the collection
9292 builder .ContentFinders ().Append <AnotherContentFinderExample >();
9393 // or Insert for a specific position in the collection
@@ -123,9 +123,9 @@ public class UpdateContentFindersComposer : IComposer
123123 public void Compose (IUmbracoBuilder builder )
124124 {
125125 // Add our custom content finder just before the core ContentFinderByUrl
126- builder .ContentFinders ().InsertBefore <ContentFinderByUrl , MyContentFinder >();
126+ builder .ContentFinders ().InsertBefore <ContentFinderByUrlNew , MyContentFinder >();
127127 // You can also remove content finders, this is not required here though, since our finder runs before the url one
128- builder .ContentFinders ().Remove <ContentFinderByUrl >();
128+ builder .ContentFinders ().Remove <ContentFinderByUrlNew >();
129129 // You use Append to add to the end of the collection
130130 builder .ContentFinders ().Append <AnotherContentFinderExample >();
131131 // or Insert for a specific position in the collection
0 commit comments