From 60d6ae44b5260130384723182b3e2c772e2b1729 Mon Sep 17 00:00:00 2001 From: Shannon Date: Thu, 10 Jul 2014 17:28:33 +1000 Subject: [PATCH] Fixes: U4-5208 RenderActionInvoker needs to be able to run async so needs to inherit from AsyncControllerActionInvoker --- src/Umbraco.Web/Mvc/RenderActionInvoker.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Umbraco.Web/Mvc/RenderActionInvoker.cs b/src/Umbraco.Web/Mvc/RenderActionInvoker.cs index f4efc6a570..e01268d245 100644 --- a/src/Umbraco.Web/Mvc/RenderActionInvoker.cs +++ b/src/Umbraco.Web/Mvc/RenderActionInvoker.cs @@ -1,12 +1,13 @@ using System.Linq; using System.Web.Mvc; +using System.Web.Mvc.Async; namespace Umbraco.Web.Mvc { /// /// Ensures that if an action for the Template name is not explicitly defined by a user, that the 'Index' action will execute /// - public class RenderActionInvoker : ControllerActionInvoker + public class RenderActionInvoker : AsyncControllerActionInvoker { ///