diff --git a/src/Umbraco.Core/Services/Implement/ContentService.cs b/src/Umbraco.Core/Services/Implement/ContentService.cs index f580a62112..2f0bd8431c 100644 --- a/src/Umbraco.Core/Services/Implement/ContentService.cs +++ b/src/Umbraco.Core/Services/Implement/ContentService.cs @@ -2885,14 +2885,8 @@ namespace Umbraco.Core.Services.Implement { foreach (var property in blueprint.Properties) { - if (property.PropertyType.VariesByCulture()) - { - content.SetValue(property.Alias, property.GetValue(culture), culture); - } - else - { - content.SetValue(property.Alias, property.GetValue()); - } + var propertyCulture = property.PropertyType.VariesByCulture() ? culture : null; + content.SetValue(property.Alias, property.GetValue(propertyCulture), propertyCulture); } content.Name = blueprint.Name;