From b4a6ab42ed6519829e31ccfeb7f7cb3b28628049 Mon Sep 17 00:00:00 2001 From: 1d0n7kn0w <3910210+1d0n7kn0w@users.noreply.github.com> Date: Mon, 13 Jul 2020 03:40:37 +0100 Subject: [PATCH] Update IdentityDataSeedContributor.cs --- .../Volo/Abp/Identity/IdentityDataSeedContributor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/identity/src/Volo.Abp.Identity.Domain/Volo/Abp/Identity/IdentityDataSeedContributor.cs b/modules/identity/src/Volo.Abp.Identity.Domain/Volo/Abp/Identity/IdentityDataSeedContributor.cs index 9dd44f1fca..16695f2708 100644 --- a/modules/identity/src/Volo.Abp.Identity.Domain/Volo/Abp/Identity/IdentityDataSeedContributor.cs +++ b/modules/identity/src/Volo.Abp.Identity.Domain/Volo/Abp/Identity/IdentityDataSeedContributor.cs @@ -18,7 +18,7 @@ namespace Volo.Abp.Identity return IdentityDataSeeder.SeedAsync( context["AdminEmail"] as string ?? "admin@abp.io", context["AdminPassword"] as string ?? "1q2w3E*", - context.TenantId + context?.TenantId ); } }