From f824a2aaf1f15d6650a9183b29cba11fb76d9042 Mon Sep 17 00:00:00 2001 From: Oscar Hinton Date: Wed, 9 Feb 2022 14:46:37 +0100 Subject: [PATCH] Revert to using newtonsoft for saving org TwoFactorProviders (#1850) --- src/Core/Entities/Organization.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/Entities/Organization.cs b/src/Core/Entities/Organization.cs index 5050ea1202..eddc4608d4 100644 --- a/src/Core/Entities/Organization.cs +++ b/src/Core/Entities/Organization.cs @@ -163,7 +163,7 @@ namespace Bit.Core.Entities return; } - TwoFactorProviders = JsonSerializer.Serialize(providers); + TwoFactorProviders = JsonHelpers.LegacySerialize(providers, JsonHelpers.LegacyEnumKeyResolver); _twoFactorProviders = providers; }