one more usage in client

This commit is contained in:
Brendan Forster
2016-04-06 20:21:33 -04:00
parent a6c21e8649
commit ff7fcfa034
+1 -1
View File
@@ -62,7 +62,7 @@ namespace Octokit
var body = new FormUrlEncodedContent(request.ToParametersDictionary());
var response = await connection.Post<OauthToken>(endPoint, body, "application/json", null, hostAddress);
var response = await connection.Post<OauthToken>(endPoint, body, "application/json", null, hostAddress).ConfigureAwait(false);
return response.Body;
}
}