From ff7fcfa0348886ad4b5b3d56942fea8a3728536e Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Wed, 6 Apr 2016 20:21:33 -0400 Subject: [PATCH] one more usage in client --- Octokit/Clients/OAuthClient.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Octokit/Clients/OAuthClient.cs b/Octokit/Clients/OAuthClient.cs index d283b5a4..e6e17fb8 100644 --- a/Octokit/Clients/OAuthClient.cs +++ b/Octokit/Clients/OAuthClient.cs @@ -62,7 +62,7 @@ namespace Octokit var body = new FormUrlEncodedContent(request.ToParametersDictionary()); - var response = await connection.Post(endPoint, body, "application/json", null, hostAddress); + var response = await connection.Post(endPoint, body, "application/json", null, hostAddress).ConfigureAwait(false); return response.Body; } }