Skip to content
This repository was archived by the owner on Dec 13, 2018. It is now read-only.

Commit 96c27fa

Browse files
Revert breaking parameter rename
1 parent 415055e commit 96c27fa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Microsoft.AspNetCore.Authentication.OpenIdConnect/OpenIdConnectHandler.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ protected virtual async Task<bool> HandleRemoteSignOutAsync()
150150
/// Redirect user to the identity provider for sign out
151151
/// </summary>
152152
/// <returns>A task executing the sign out procedure</returns>
153-
protected override async Task HandleSignOutAsync(SignOutContext context)
153+
protected override async Task HandleSignOutAsync(SignOutContext signout)
154154
{
155155
Logger.EnteringOpenIdAuthenticationHandlerHandleSignOutAsync(GetType().FullName);
156156

@@ -168,7 +168,7 @@ protected override async Task HandleSignOutAsync(SignOutContext context)
168168
};
169169

170170
// Get the post redirect URI.
171-
var properties = new AuthenticationProperties(context.Properties);
171+
var properties = new AuthenticationProperties(signout.Properties);
172172
if (string.IsNullOrEmpty(properties.RedirectUri))
173173
{
174174
properties.RedirectUri = BuildRedirectUriIfRelative(Options.PostLogoutRedirectUri);

0 commit comments

Comments
 (0)