This commit is contained in:
Chris R 2017-07-13 09:28:07 -07:00
Родитель 9cb35edd4c
Коммит 4ddfa03872
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -251,8 +251,8 @@ namespace Microsoft.Owin.Security.OpenIdConnect
{
throw new OpenIdConnectProtocolException(
string.Format(CultureInfo.InvariantCulture,
openIdConnectMessage.Error,
Resources.Exception_OpenIdConnectMessageError, openIdConnectMessage.ErrorDescription ?? string.Empty, openIdConnectMessage.ErrorUri ?? string.Empty));
Resources.Exception_OpenIdConnectMessageError,
openIdConnectMessage.Error, openIdConnectMessage.ErrorDescription ?? string.Empty, openIdConnectMessage.ErrorUri ?? string.Empty));
}
// code is only accepted with id_token, in this version, hence check for code is inside this if