Using self.error instead of self.JSONError in AFJSONRequestOperation.

This commit is contained in:
Oliver Letterer 2013-05-02 20:03:17 +02:00
Родитель 613ef3489d
Коммит 1ce0a211ba
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -120,7 +120,7 @@ static dispatch_queue_t json_request_operation_processing_queue() {
dispatch_async(json_request_operation_processing_queue(), ^{
id JSON = self.responseJSON;
if (self.JSONError) {
if (self.error) {
if (failure) {
dispatch_async(self.failureCallbackQueue ?: dispatch_get_main_queue(), ^{
failure(self, self.error);