From 13e9dd9c74e570a98ed02012fd659147c335e29d Mon Sep 17 00:00:00 2001 From: Gavin Faux Date: Mon, 25 Dec 2023 09:37:19 +0000 Subject: [PATCH] #432 all nodes except the homepage return 404 bump ArticulateRouteValueTransformer route order reference https://github.com/Shazwazza/Articulate/issues/432#issuecomment-1868116528 --- src/Articulate/Components/ArticulatePipelineStartupFilter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Articulate/Components/ArticulatePipelineStartupFilter.cs b/src/Articulate/Components/ArticulatePipelineStartupFilter.cs index 2987c91e..9863f257 100644 --- a/src/Articulate/Components/ArticulatePipelineStartupFilter.cs +++ b/src/Articulate/Components/ArticulatePipelineStartupFilter.cs @@ -15,7 +15,7 @@ public void Configure(UmbracoPipelineOptions options) endpoints.MapDynamicControllerRoute( "/{any}/{**slug}", null, - 100); // Ensure it runs AFTER Umbraco so that we can check if things are already matched. + 1000); // Ensure it runs AFTER Umbraco so that we can check if things are already matched. }) }); }