Use the property mxSession instead of the shared MatrixSDKHandler object.

This commit is contained in:
giomfo
2015-04-17 14:05:40 +02:00
parent a667c09aba
commit 72d752155d
2 changed files with 2 additions and 2 deletions
@@ -83,7 +83,7 @@
currentMemberViewController = (MemberViewController *)[segue destinationViewController];
currentMemberViewController.mxSession = self.mxSession;
currentMemberViewController.mxRoomMember = selectedMember;
currentMemberViewController.mxRoom = [[MatrixSDKHandler sharedHandler].mxSession roomWithRoomId:self.dataSource.roomId];
currentMemberViewController.mxRoom = [self.mxSession roomWithRoomId:self.dataSource.roomId];
}
}
}