missed passing this parameter down

This commit is contained in:
Brendan Forster
2015-01-29 15:55:49 +09:30
parent 7fcc956f34
commit 08a2b143d7
+1 -1
View File
@@ -265,7 +265,7 @@ namespace Octokit
Ensure.ArgumentNotNull(uri, "uri");
Ensure.ArgumentNotNull(data, "data");
var response = await Connection.Put<T>(uri, data, twoFactorAuthenticationCode).ConfigureAwait(false);
var response = await Connection.Put<T>(uri, data, twoFactorAuthenticationCode, accepts).ConfigureAwait(false);
return response.Body;
}