We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db85ded commit 4bc32a4Copy full SHA for 4bc32a4
CIE.AspNetCore.Authentication/CIE.AspNetCore.Authentication/CieHandler.cs
@@ -89,6 +89,8 @@ public override Task<bool> HandleRequestAsync()
89
90
protected override async Task HandleChallengeAsync(AuthenticationProperties properties)
91
{
92
+ properties ??= new();
93
+
94
// Save the original challenge URI so we can redirect back to it when we're done.
95
if (string.IsNullOrEmpty(properties.RedirectUri))
96
@@ -195,6 +197,7 @@ public async virtual Task SignOutAsync(AuthenticationProperties properties)
195
197
196
198
string authenticationRequestId = Guid.NewGuid().ToString();
199
200
201
properties.Load(Request, Options.StateDataFormat);
202
203
// Extract the user state from properties and reset.
0 commit comments