From 9de5519c8b2c5368ee10de5d10ec46ea15fd1e96 Mon Sep 17 00:00:00 2001 From: Jean Collas Date: Wed, 8 Mar 2017 04:48:02 +0100 Subject: [PATCH] Update of wrong variable name To avoid confusion when reading the code --- samples/SocialSample/Startup.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/SocialSample/Startup.cs b/samples/SocialSample/Startup.cs index e99be82f8c..31ec187a02 100644 --- a/samples/SocialSample/Startup.cs +++ b/samples/SocialSample/Startup.cs @@ -238,9 +238,9 @@ namespace SocialSample app.UseOAuthAuthentication(githubOptions); // Choose an authentication type - app.Map("/login", signoutApp => + app.Map("/login", signinApp => { - signoutApp.Run(async context => + signinApp.Run(async context => { var authType = context.Request.Query["authscheme"]; if (!string.IsNullOrEmpty(authType))