File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/Security/Authentication/OAuth/src Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -225,11 +225,11 @@ protected virtual async Task<OAuthTokenResponse> ExchangeCodeAsync(OAuthCodeExch
225
225
return response . IsSuccessStatusCode switch
226
226
{
227
227
true => OAuthTokenResponse . Success ( JsonDocument . Parse ( body ) ) ,
228
- false => PrepareFailedOAuthTokenReponse ( response , body )
228
+ false => PrepareFailedOAuthTokenResponse ( response , body )
229
229
} ;
230
230
}
231
231
232
- private static OAuthTokenResponse PrepareFailedOAuthTokenReponse ( HttpResponseMessage response , string body )
232
+ private static OAuthTokenResponse PrepareFailedOAuthTokenResponse ( HttpResponseMessage response , string body )
233
233
{
234
234
var exception = OAuthTokenResponse . GetStandardErrorException ( JsonDocument . Parse ( body ) ) ;
235
235
You can’t perform that action at this time.
0 commit comments