Merge pull request #966 from OliverLetterer/use-error
Using self.error instead of self.JSONError in AFJSONRequestOperation.
This commit is contained in:
commit
f959d81760
1 changed files with 1 additions and 1 deletions
|
|
@ -120,7 +120,7 @@ static dispatch_queue_t json_request_operation_processing_queue() {
|
||||||
dispatch_async(json_request_operation_processing_queue(), ^{
|
dispatch_async(json_request_operation_processing_queue(), ^{
|
||||||
id JSON = self.responseJSON;
|
id JSON = self.responseJSON;
|
||||||
|
|
||||||
if (self.JSONError) {
|
if (self.error) {
|
||||||
if (failure) {
|
if (failure) {
|
||||||
dispatch_async(self.failureCallbackQueue ?: dispatch_get_main_queue(), ^{
|
dispatch_async(self.failureCallbackQueue ?: dispatch_get_main_queue(), ^{
|
||||||
failure(self, self.error);
|
failure(self, self.error);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue