mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-05-01 05:36:57 +02:00
RecentsDataSource: Remove InviteRecentTableViewCell dependency
Add sanity check
This commit is contained in:
@@ -330,8 +330,11 @@
|
||||
}
|
||||
else
|
||||
{
|
||||
// Keep default implementation for other actions
|
||||
[super dataSource:dataSource didRecognizeAction:actionIdentifier inCell:cell userInfo:userInfo];
|
||||
// Keep default implementation for other actions if any
|
||||
if ([super respondsToSelector:@selector(cell:didRecognizeAction:userInfo:)])
|
||||
{
|
||||
[super dataSource:dataSource didRecognizeAction:actionIdentifier inCell:cell userInfo:userInfo];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user