Fixing no data success callback parameters
This commit is contained in:
parent
d22ed88d58
commit
4f9c1a12dd
1 changed files with 1 additions and 1 deletions
|
|
@ -80,7 +80,7 @@ static dispatch_queue_t json_request_operation_processing_queue() {
|
||||||
}
|
}
|
||||||
} else if ([data length] == 0) {
|
} else if ([data length] == 0) {
|
||||||
if (success) {
|
if (success) {
|
||||||
success(nil);
|
success(request, response, nil);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
dispatch_async(json_request_operation_processing_queue(), ^(void) {
|
dispatch_async(json_request_operation_processing_queue(), ^(void) {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue