Skip to content
This repository has been archived by the owner on Dec 4, 2018. It is now read-only.

Fix retain cycle in -oct_parsedResults #143

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion OctoKit/RACSignal+OCTClientAdditions.m
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ @implementation RACSignal (OCTClientAdditions)

- (RACSignal *)oct_parsedResults {
return [self map:^(OCTResponse *response) {
NSAssert([response isKindOfClass:OCTResponse.class], @"Expected %@ to be an OCTResponse.", response);
NSCAssert([response isKindOfClass:OCTResponse.class], @"Expected %@ to be an OCTResponse.", response);
return response.parsedResult;
}];
}
Expand Down