From 4deb138fd980abbddb87dd2e25d85e225ae40ce6 Mon Sep 17 00:00:00 2001 From: Robyn MacCallum Date: Mon, 7 Mar 2022 16:53:30 -0500 Subject: [PATCH] Ignore case on AutoEnrollEnabled so it is deserialized properly (#1900) --- src/Api/Controllers/OrganizationsController.cs | 2 +- src/Core/Services/Implementations/OrganizationService.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Api/Controllers/OrganizationsController.cs b/src/Api/Controllers/OrganizationsController.cs index c06eaad611..41d7216e1a 100644 --- a/src/Api/Controllers/OrganizationsController.cs +++ b/src/Api/Controllers/OrganizationsController.cs @@ -185,7 +185,7 @@ namespace Bit.Api.Controllers return new OrganizationAutoEnrollStatusResponseModel(organization.Id, false); } - var data = JsonSerializer.Deserialize(resetPasswordPolicy.Data); + var data = JsonSerializer.Deserialize(resetPasswordPolicy.Data, JsonHelpers.IgnoreCase); return new OrganizationAutoEnrollStatusResponseModel(organization.Id, data?.AutoEnrollEnabled ?? false); } diff --git a/src/Core/Services/Implementations/OrganizationService.cs b/src/Core/Services/Implementations/OrganizationService.cs index bf1144adb4..a21a9cee3b 100644 --- a/src/Core/Services/Implementations/OrganizationService.cs +++ b/src/Core/Services/Implementations/OrganizationService.cs @@ -1773,7 +1773,7 @@ namespace Bit.Core.Services // Block the user from withdrawal if auto enrollment is enabled if (resetPasswordKey == null && resetPasswordPolicy.Data != null) { - var data = JsonSerializer.Deserialize(resetPasswordPolicy.Data); + var data = JsonSerializer.Deserialize(resetPasswordPolicy.Data, JsonHelpers.IgnoreCase); if (data?.AutoEnrollEnabled ?? false) {