From 7a63e2678511104d59ee13b6fa5535c80bc7fa7e Mon Sep 17 00:00:00 2001 From: Bjarke Berg Date: Wed, 26 May 2021 18:31:03 +0200 Subject: [PATCH] Add missing IMigrationContext to RebuildPublishedSnapshot ctor --- .../Migrations/PostMigrations/RebuildPublishedSnapshot.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Infrastructure/Migrations/PostMigrations/RebuildPublishedSnapshot.cs b/src/Umbraco.Infrastructure/Migrations/PostMigrations/RebuildPublishedSnapshot.cs index ca39939ac9..bbf366882f 100644 --- a/src/Umbraco.Infrastructure/Migrations/PostMigrations/RebuildPublishedSnapshot.cs +++ b/src/Umbraco.Infrastructure/Migrations/PostMigrations/RebuildPublishedSnapshot.cs @@ -12,7 +12,7 @@ namespace Umbraco.Cms.Infrastructure.Migrations.PostMigrations /// /// Initializes a new instance of the class. /// - public RebuildPublishedSnapshot(IPublishedSnapshotRebuilder rebuilder) + public RebuildPublishedSnapshot(IMigrationContext context, IPublishedSnapshotRebuilder rebuilder) { _rebuilder = rebuilder; }