From 5bb952d4606077698c4f1044ca7e040041057d0e Mon Sep 17 00:00:00 2001 From: Owain R Hunt Date: Thu, 6 Oct 2011 17:53:42 +0100 Subject: [PATCH] Add 'withParameters:nil' to call within -sendRequest:requestType:responseType: so it'll actually, y'know, work. --- UAGithubEngine.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UAGithubEngine.m b/UAGithubEngine.m index 3948ee0..2be324c 100644 --- a/UAGithubEngine.m +++ b/UAGithubEngine.m @@ -269,7 +269,7 @@ - (NSString *)sendRequest:(NSString *)path requestType:(UAGithubRequestType)requ - (NSString *)sendRequest:(NSString *)path requestType:(UAGithubRequestType)requestType responseType:(UAGithubResponseType)responseType { - return [self sendRequest:path requestType:requestType responseType:responseType]; + return [self sendRequest:path requestType:requestType responseType:responseType withParameters:nil]; }