From 45515d1b6602bc5f94b985c1ffbeff3546dc900e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Chalet?= Date: Tue, 20 Feb 2024 10:23:03 +0100 Subject: [PATCH] Remove the unnecessary RequireLocalValidation filter from the ValidateDataProtectionToken event handler --- .../OpenIddictValidationDataProtectionHandlers.Protection.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/OpenIddict.Validation.DataProtection/OpenIddictValidationDataProtectionHandlers.Protection.cs b/src/OpenIddict.Validation.DataProtection/OpenIddictValidationDataProtectionHandlers.Protection.cs index f9670544..bff7fc6c 100644 --- a/src/OpenIddict.Validation.DataProtection/OpenIddictValidationDataProtectionHandlers.Protection.cs +++ b/src/OpenIddict.Validation.DataProtection/OpenIddictValidationDataProtectionHandlers.Protection.cs @@ -43,7 +43,6 @@ public static partial class OpenIddictValidationDataProtectionHandlers /// public static OpenIddictValidationHandlerDescriptor Descriptor { get; } = OpenIddictValidationHandlerDescriptor.CreateBuilder() - .AddFilter() .UseSingletonHandler() .SetOrder(ValidateIdentityModelToken.Descriptor.Order + 500) .SetType(OpenIddictValidationHandlerType.BuiltIn)