From ce84f24d2009f20e8f800a942137ac10fa75d67f Mon Sep 17 00:00:00 2001 From: Brendan Hay Date: Wed, 10 Aug 2016 12:49:14 +0200 Subject: [PATCH] Adding missing colon separator when CaptureModes are serialised For example, CaptureMode "projectId" "commit" being incorrectly serialised to "projectIdcommit" instead of "projectId:commit". Fixes #33 --- core/src/Network/Google/Types.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/Network/Google/Types.hs b/core/src/Network/Google/Types.hs index c063ea60fa..5fabd2869a 100644 --- a/core/src/Network/Google/Types.hs +++ b/core/src/Network/Google/Types.hs @@ -488,7 +488,7 @@ instance ( KnownSymbol s buildClient Proxy rq x = buildClient (Proxy :: Proxy fn) . appendPath rq - $ buildText x <> buildSymbol (Proxy :: Proxy m) + $ buildText x <> ":" <> buildSymbol (Proxy :: Proxy m) instance ( KnownSymbol s , ToHttpApiData a