From b62bcfaec99bab0330e1fcb6d2f12e7d661c3e94 Mon Sep 17 00:00:00 2001 From: Devesh Khandelwal Date: Tue, 8 Mar 2016 00:28:16 +0530 Subject: [PATCH] Passing on serialize argument to Connection's ctor, wasn't passing on before. Breaks tests. --- Octokit/Http/Connection.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Octokit/Http/Connection.cs b/Octokit/Http/Connection.cs index dabee271..ba1035d7 100644 --- a/Octokit/Http/Connection.cs +++ b/Octokit/Http/Connection.cs @@ -133,7 +133,7 @@ namespace Octokit BaseAddress = baseAddress; _authenticator = new Authenticator(credentialStore); _httpClient = httpClient; - _jsonPipeline = new JsonHttpPipeline(); + _jsonPipeline = new JsonHttpPipeline(serializer); } ///