From d844b62f84b831f8fdc4f2b3f59c3cff46b8ae16 Mon Sep 17 00:00:00 2001 From: Mole Date: Tue, 30 Mar 2021 14:59:10 +0200 Subject: [PATCH] TemplateSaved not TemplateSaving --- src/Umbraco.Infrastructure/Services/Implement/FileService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Infrastructure/Services/Implement/FileService.cs b/src/Umbraco.Infrastructure/Services/Implement/FileService.cs index 0d22e4c83c..24d06542a0 100644 --- a/src/Umbraco.Infrastructure/Services/Implement/FileService.cs +++ b/src/Umbraco.Infrastructure/Services/Implement/FileService.cs @@ -576,7 +576,7 @@ namespace Umbraco.Cms.Core.Services.Implement _templateRepository.Save(template); } - scope.Notifications.Publish(new TemplateSavingNotification(templatesA, eventMessages).WithStateFrom(savingNotification)); + scope.Notifications.Publish(new TemplateSavedNotification(templatesA, eventMessages).WithStateFrom(savingNotification)); Audit(AuditType.Save, userId, -1, UmbracoObjectTypes.Template.GetName()); scope.Complete();