File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -1822,6 +1822,13 @@ - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath
18221822 return ;
18231823 }
18241824
1825+ if (self.navigationController .transitionCoordinator != nil ) {
1826+ // In case we are currently in a transition (e.g. swipe back from a conversation),
1827+ // we don't want to present any new view controller, as that leads to crashes on iOS >= 26
1828+ [self removeRoomSelection ];
1829+ return ;
1830+ }
1831+
18251832 if (tableView == self.tableView && indexPath.section == kRoomsSectionPendingFederationInvitation ) {
18261833 FederationInvitationTableViewController *federationInvitationVC = [[FederationInvitationTableViewController alloc ] init ];
18271834 NCNavigationController *navigationController = [[NCNavigationController alloc ] initWithRootViewController: federationInvitationVC];
You can’t perform that action at this time.
0 commit comments