Closed zilmarinen closed 10 years ago
https://github.com/3squared/SQKDataKit/blob/master/Examples/SQKCoreDataOperation%20Example/SQKCoreDataOperation%20Example/Data%20Sycnrhronisation/CDODataSynchroniser.m#L69
if (dependentOperation.error) NSLog(@"Dependency \'%@\' errored; %@", dependentOperationName, dependentOperation.error); if (dependentOperation.error) NSLog(@"Dependency \'%@\' cancelled", dependentOperationName);
The second if statement should check the [dependentOperation isCancelled] property.
[dependentOperation isCancelled]
Well spotted. Will be fixed before next release.
https://github.com/3squared/SQKDataKit/blob/master/Examples/SQKCoreDataOperation%20Example/SQKCoreDataOperation%20Example/Data%20Sycnrhronisation/CDODataSynchroniser.m#L69
The second if statement should check the
[dependentOperation isCancelled]
property.