Merge branch 'release/0.10.1' into development

This commit is contained in:
Blake Watters
2012-05-25 23:33:54 -04:00
30 changed files with 1919 additions and 994 deletions

View File

@@ -123,7 +123,7 @@
- (void)finalizeLoad:(BOOL)successful {
self.loading = NO;
self.loaded = successful;
if ([self.delegate respondsToSelector:@selector(objectLoaderDidFinishLoading:)]) {
[(NSObject<RKObjectLoaderDelegate>*)self.delegate performSelectorOnMainThread:@selector(objectLoaderDidFinishLoading:)
withObject:self waitUntilDone:YES];
@@ -407,7 +407,10 @@
object:self
userInfo:userInfo];
}
[self informDelegateOfError:error];
if (! self.isCancelled) {
[self informDelegateOfError:error];
}
[self finalizeLoad:NO];
}