CookieAuthenticationHandler spelling fix (#101)

Fixed small spelling mistake in logging when no session id is found during AuthenticateCoreAsync
This commit is contained in:
IvanLieckens 2017-08-03 16:08:47 +02:00 коммит произвёл Chris Ross
Родитель 43b1aa413c
Коммит 7cb4597951
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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;