From e1709eaed5cb7306a60b70db00987c888ac34cbc Mon Sep 17 00:00:00 2001 From: Bjarke Berg Date: Fri, 4 Jan 2019 08:16:20 +0100 Subject: [PATCH] Bugfix, missing return, when publishing with decendants and the root do not have variants. --- src/Umbraco.Web/Editors/ContentController.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Umbraco.Web/Editors/ContentController.cs b/src/Umbraco.Web/Editors/ContentController.cs index 55862d14b8..9f0e350e55 100644 --- a/src/Umbraco.Web/Editors/ContentController.cs +++ b/src/Umbraco.Web/Editors/ContentController.cs @@ -1094,6 +1094,7 @@ namespace Umbraco.Web.Editors //TODO: Deal with multiple cancelations wasCancelled = publishStatus.Any(x => x.Result == PublishResultType.FailedPublishCancelledByEvent); successfulCultures = Array.Empty(); + return publishStatus; } //All variants in this collection should have a culture if we get here! but we'll double check and filter here