Browse Source

Fix the ExtractWebAuthenticationResultData event handler to correctly set the request instance

pull/2103/head
Kévin Chalet 2 years ago
parent
commit
710946d2fe
  1. 2
      src/OpenIddict.Client.SystemIntegration/OpenIddictClientSystemIntegrationHandlers.cs

2
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));

Loading…
Cancel
Save