From 1de3d17548ef6f69a976cb993dc22009eda6ce0c Mon Sep 17 00:00:00 2001 From: Mattt Thompson Date: Tue, 18 Oct 2011 10:56:35 -0500 Subject: [PATCH] [Issue #77] Returning correct error ivar in AFHTTPRequestOperation -error --- AFNetworking/AFHTTPRequestOperation.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AFNetworking/AFHTTPRequestOperation.m b/AFNetworking/AFHTTPRequestOperation.m index 69bc370..1464dda 100644 --- a/AFNetworking/AFHTTPRequestOperation.m +++ b/AFNetworking/AFHTTPRequestOperation.m @@ -70,7 +70,7 @@ } } - return [super error]; + return _HTTPError; } - (BOOL)hasAcceptableStatusCode {