From 537670080b9db5700505c962f11b3c3dada027b5 Mon Sep 17 00:00:00 2001 From: Tony Arnold Date: Wed, 28 Nov 2012 08:12:51 +1100 Subject: [PATCH] Pass errorCallback through convenience method --- .../NSManagedObjectContext+MagicalSaves.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalSaves.m b/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalSaves.m index aec15ad..ff20b8f 100644 --- a/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalSaves.m +++ b/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalSaves.m @@ -65,7 +65,7 @@ - (void) MR_saveNestedContextsErrorHandler:(void (^)(NSError *))errorCallback; { - [self MR_saveNestedContextsErrorHandler:nil completion:nil]; + [self MR_saveNestedContextsErrorHandler:errorCallback completion:nil]; } - (void) MR_saveNestedContextsErrorHandler:(void (^)(NSError *))errorCallback completion:(void (^)(void))completion;