Skip to content
This repository has been archived by the owner on Aug 14, 2019. It is now read-only.

Commit

Permalink
Merge pull request #1027 from sebastianludwig/custom_action_fix
Browse files Browse the repository at this point in the history
Fix #1026
  • Loading branch information
jessesquires committed Jun 11, 2015
2 parents a2f8b39 + 2870560 commit 122983d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ - (BOOL)respondsToSelector:(SEL)aSelector
- (void)forwardInvocation:(NSInvocation *)anInvocation
{
if ([jsqMessagesCollectionViewCellActions containsObject:NSStringFromSelector(anInvocation.selector)]) {
id sender;
__unsafe_unretained id sender;
[anInvocation getArgument:&sender atIndex:0];
[self.delegate messagesCollectionViewCell:self didPerformAction:anInvocation.selector withSender:sender];
}
Expand Down

0 comments on commit 122983d

Please sign in to comment.