From 0b9c18cfec9fcf4303b890ee016051e3a67d710c Mon Sep 17 00:00:00 2001 From: Ronald Barendse Date: Mon, 6 Oct 2025 16:58:33 +0200 Subject: [PATCH] Migrate actual prevalue property value --- .../Legacy/Content/PrevaluePropertyTypeMigratorBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Deploy.Contrib/Migrators/Legacy/Content/PrevaluePropertyTypeMigratorBase.cs b/src/Umbraco.Deploy.Contrib/Migrators/Legacy/Content/PrevaluePropertyTypeMigratorBase.cs index 4c9ad4e..6ac89b8 100644 --- a/src/Umbraco.Deploy.Contrib/Migrators/Legacy/Content/PrevaluePropertyTypeMigratorBase.cs +++ b/src/Umbraco.Deploy.Contrib/Migrators/Legacy/Content/PrevaluePropertyTypeMigratorBase.cs @@ -48,7 +48,7 @@ protected PrevaluePropertyTypeMigratorBase(string fromEditorAlias, string toEdit /// public override Task MigrateAsync(IPropertyType propertyType, object? value, IDictionary propertyEditorAliases, IContextCache contextCache, CancellationToken cancellationToken = default) - => Task.FromResult(Migrate(propertyType)); + => Task.FromResult(Migrate(value)); private object? Migrate(object? value) {