Fix after merge.

This commit is contained in:
Bjarke Berg
2022-01-23 15:26:17 +01:00
parent ae6920a4a2
commit 775bdff03b
6 changed files with 14 additions and 43 deletions

View File

@@ -45,7 +45,7 @@ namespace Umbraco.Cms.Infrastructure.Persistence.Repositories.Implement
/// Initializes a new instance of the <see cref="CreatedPackageSchemaRepository"/> class.
/// </summary>
public CreatedPackageSchemaRepository(
IUmbracoDatabase umbracoDatabase,
IUmbracoDatabaseFactory umbracoDatabaseFactory,
IHostingEnvironment hostingEnvironment,
IOptions<GlobalSettings> globalSettings,
FileSystems fileSystems,
@@ -62,7 +62,7 @@ namespace Umbraco.Cms.Infrastructure.Persistence.Repositories.Implement
string mediaFolderPath = null,
string tempFolderPath = null)
{
_umbracoDatabase = umbracoDatabase;
_umbracoDatabase = umbracoDatabaseFactory.CreateDatabase();
_hostingEnvironment = hostingEnvironment;
_fileSystems = fileSystems;
_serializer = serializer;