CookieAuthenticationHandler spelling fix (#101)
Fixed small spelling mistake in logging when no session id is found during AuthenticateCoreAsync
This commit is contained in:
Родитель
43b1aa413c
Коммит
7cb4597951
|
@ -60,7 +60,7 @@ namespace Microsoft.Owin.Security.Cookies
|
|||
Claim claim = ticket.Identity.Claims.FirstOrDefault(c => c.Type.Equals(SessionIdClaim));
|
||||
if (claim == null)
|
||||
{
|
||||
_logger.WriteWarning(@"SessoinId missing");
|
||||
_logger.WriteWarning(@"SessionId missing");
|
||||
return null;
|
||||
}
|
||||
_sessionKey = claim.Value;
|
||||
|
|
Загрузка…
Ссылка в новой задаче