From ec3bc9580971f796da42a85b42d9d724b85e2a40 Mon Sep 17 00:00:00 2001 From: Andy Butland Date: Fri, 4 Jun 2021 12:48:43 +0200 Subject: [PATCH] Fixed typo in AddUnattendedInstallInstallCreateUser(this method name. (#10388) --- .../DependencyInjection/UmbracoBuilderExtensions.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Umbraco.Web.BackOffice/DependencyInjection/UmbracoBuilderExtensions.cs b/src/Umbraco.Web.BackOffice/DependencyInjection/UmbracoBuilderExtensions.cs index b2b1221685..5088f69ef1 100644 --- a/src/Umbraco.Web.BackOffice/DependencyInjection/UmbracoBuilderExtensions.cs +++ b/src/Umbraco.Web.BackOffice/DependencyInjection/UmbracoBuilderExtensions.cs @@ -48,11 +48,11 @@ namespace Umbraco.Extensions .AddNuCache() .AddDistributedCache() .AddModelsBuilderDashboard() - .AddUnattedInstallCreateUser() + .AddUnattendedInstallInstallCreateUser() .AddExamine() .AddExamineIndexes(); - public static IUmbracoBuilder AddUnattedInstallCreateUser(this IUmbracoBuilder builder) + public static IUmbracoBuilder AddUnattendedInstallInstallCreateUser(this IUmbracoBuilder builder) { builder.AddNotificationAsyncHandler(); return builder;