From c0d022be10306cbf9d31027d8d87db6abea1540a Mon Sep 17 00:00:00 2001 From: Kenn Jacobsen Date: Wed, 14 Dec 2022 11:00:12 +0100 Subject: [PATCH] Fix wrongfully reported pending package migrations (#13574) --- .../Services/Implement/PackagingService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Infrastructure/Services/Implement/PackagingService.cs b/src/Umbraco.Infrastructure/Services/Implement/PackagingService.cs index 62663e165c..a0330d75fd 100644 --- a/src/Umbraco.Infrastructure/Services/Implement/PackagingService.cs +++ b/src/Umbraco.Infrastructure/Services/Implement/PackagingService.cs @@ -133,7 +133,7 @@ public class PackagingService : IPackagingService var currentPlans = installedPackage.PackageMigrationPlans.ToList(); if (keyValues is null || keyValues.TryGetValue( Constants.Conventions.Migrations.KeyValuePrefix + plan.Name, - out var currentState)) + out var currentState) is false) { currentState = null; }