From 710946d2fe2e7b19556b634fa98b60da2fc6f38e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Chalet?= Date: Wed, 19 Jun 2024 17:20:05 +0200 Subject: [PATCH] Fix the ExtractWebAuthenticationResultData event handler to correctly set the request instance --- .../OpenIddictClientSystemIntegrationHandlers.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/OpenIddict.Client.SystemIntegration/OpenIddictClientSystemIntegrationHandlers.cs b/src/OpenIddict.Client.SystemIntegration/OpenIddictClientSystemIntegrationHandlers.cs index 757a5a5a..2ee38bf7 100644 --- a/src/OpenIddict.Client.SystemIntegration/OpenIddictClientSystemIntegrationHandlers.cs +++ b/src/OpenIddict.Client.SystemIntegration/OpenIddictClientSystemIntegrationHandlers.cs @@ -629,6 +629,8 @@ public static partial class OpenIddictClientSystemIntegrationHandlers } } + context.Transaction.Request = new OpenIddictRequest(parameters); + return default; #else throw new PlatformNotSupportedException(SR.GetResourceString(SR.ID0392));