diff --git a/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalRecord.m b/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalRecord.m index 3401d8e..4630f09 100644 --- a/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalRecord.m +++ b/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalRecord.m @@ -242,9 +242,9 @@ static NSUInteger defaultBatchSize = kMagicalRecordDefaultBatchSize; - (id) MR_inContext:(NSManagedObjectContext *)otherContext { - NSError *error = nil; - NSManagedObject *inContext = [otherContext existingObjectWithID:[self objectID] error:&error]; - [MagicalRecord handleErrors:error]; +// NSError *error = nil; + NSManagedObject *inContext = [otherContext objectWithID:[self objectID]]; +// [MagicalRecord handleErrors:error]; if (inContext == nil) { MRLog(@"Did not find object %@ in context %@", self, otherContext);