diff --git a/src/Umbraco.Web/WebApi/Binders/ContentItemBaseBinder.cs b/src/Umbraco.Web/WebApi/Binders/ContentItemBaseBinder.cs index 2c47a1a67b..b5510ec85d 100644 --- a/src/Umbraco.Web/WebApi/Binders/ContentItemBaseBinder.cs +++ b/src/Umbraco.Web/WebApi/Binders/ContentItemBaseBinder.cs @@ -62,7 +62,7 @@ namespace Umbraco.Web.WebApi.Binders Directory.CreateDirectory(root); var provider = new MultipartFormDataStreamProvider(root); - var task = Task.Run(() => GetModel(actionContext, bindingContext, provider)) + var task = Task.Run(() => GetModelAsync(actionContext, bindingContext, provider)) .ContinueWith(x => { if (x.IsFaulted && x.Exception != null) @@ -94,7 +94,7 @@ namespace Umbraco.Web.WebApi.Binders /// /// /// - private async Task GetModel(HttpActionContext actionContext, ModelBindingContext bindingContext, MultipartFormDataStreamProvider provider) + private async Task GetModelAsync(HttpActionContext actionContext, ModelBindingContext bindingContext, MultipartFormDataStreamProvider provider) { var request = actionContext.Request;