From a8c20d1c327b928e800ed4321333a0368e755117 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Thu, 20 Aug 2020 10:12:27 -0400 Subject: [PATCH] pass down version properly to generate license (#880) --- src/Core/Services/Implementations/OrganizationService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/Services/Implementations/OrganizationService.cs b/src/Core/Services/Implementations/OrganizationService.cs index 520a2e8313..0c21ec67a9 100644 --- a/src/Core/Services/Implementations/OrganizationService.cs +++ b/src/Core/Services/Implementations/OrganizationService.cs @@ -1313,7 +1313,7 @@ namespace Bit.Core.Services } var subInfo = await _paymentService.GetSubscriptionAsync(organization); - return new OrganizationLicense(organization, subInfo, installationId, _licensingService); + return new OrganizationLicense(organization, subInfo, installationId, _licensingService, version); } public async Task ImportAsync(Guid organizationId,