Multi-session handling: apply MatrixKit changes into Console.

This commit is contained in:
giomfo
2015-05-28 17:54:50 +02:00
parent a8b01c264d
commit 5cbd906199
9 changed files with 233 additions and 157 deletions
@@ -79,9 +79,9 @@
if ([[segue destinationViewController] isKindOfClass:[MemberViewController class]]) {
if (selectedMember) {
currentMemberViewController = (MemberViewController *)[segue destinationViewController];
currentMemberViewController.mxSession = self.mxSession;
[currentMemberViewController addMatrixSession:self.mainSession];
currentMemberViewController.mxRoomMember = selectedMember;
currentMemberViewController.mxRoom = [self.mxSession roomWithRoomId:self.dataSource.roomId];
currentMemberViewController.mxRoom = [self.mainSession roomWithRoomId:self.dataSource.roomId];
}
}
}