diff --git a/src/Umbraco.Core/Services/ContentService.cs b/src/Umbraco.Core/Services/ContentService.cs index ce90aef298..855cc22a2b 100644 --- a/src/Umbraco.Core/Services/ContentService.cs +++ b/src/Umbraco.Core/Services/ContentService.cs @@ -643,6 +643,7 @@ namespace Umbraco.Core.Services /// The published version, if any; otherwise, null. public IContent GetPublishedVersion(IContent content) { + if (content.Published) return content; return content.HasPublishedVersion ? GetByVersion(content.PublishedVersionGuid) : null;