Use one external entry point on AppDelegate to navigate to a room

This commit is contained in:
SBiOSoftWhare
2019-04-08 13:32:46 +02:00
parent af2164d21e
commit 0f26ed8e3e
5 changed files with 21 additions and 7 deletions
@@ -759,8 +759,8 @@
{
// Avoid multiple openings of rooms
self.userInteractionEnabled = NO;
[[AppDelegate theDelegate].masterTabBarController selectRoomWithId:roomId andEventId:nil inMatrixSession:matrixSession completion:^{
[[AppDelegate theDelegate] showRoom:roomId andEventId:nil withMatrixSession:matrixSession completion:^{
self.userInteractionEnabled = YES;
}];
}