From 08a2b143d78cd88349c07983e7d3a4f7ebdce78b Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Thu, 29 Jan 2015 15:55:49 +0930 Subject: [PATCH] missed passing this parameter down --- Octokit/Http/ApiConnection.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Octokit/Http/ApiConnection.cs b/Octokit/Http/ApiConnection.cs index fabc4f28..c01086f6 100644 --- a/Octokit/Http/ApiConnection.cs +++ b/Octokit/Http/ApiConnection.cs @@ -265,7 +265,7 @@ namespace Octokit Ensure.ArgumentNotNull(uri, "uri"); Ensure.ArgumentNotNull(data, "data"); - var response = await Connection.Put(uri, data, twoFactorAuthenticationCode).ConfigureAwait(false); + var response = await Connection.Put(uri, data, twoFactorAuthenticationCode, accepts).ConfigureAwait(false); return response.Body; }