From 9c98f0358ba6829665cddc88216c8f0295f27d90 Mon Sep 17 00:00:00 2001 From: Oscar Hinton Date: Wed, 9 Feb 2022 13:05:03 +0100 Subject: [PATCH] Fix newtonsoft complaining about U2f keys (#1844) --- src/Core/Enums/TwoFactorProviderType.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/Enums/TwoFactorProviderType.cs b/src/Core/Enums/TwoFactorProviderType.cs index 3779d5adde..40c4e55111 100644 --- a/src/Core/Enums/TwoFactorProviderType.cs +++ b/src/Core/Enums/TwoFactorProviderType.cs @@ -6,7 +6,7 @@ Email = 1, Duo = 2, YubiKey = 3, - // U2f = 4, // Deprecated + U2f = 4, // Deprecated Remember = 5, OrganizationDuo = 6, WebAuthn = 7,