Disable voip call on members/contacts details.

Contact details: Start voice call failed silently #745
This commit is contained in:
giomfo
2016-11-10 15:21:28 +01:00
parent 7ad31254a8
commit b4d1be2e6c
4 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -2109,7 +2109,7 @@
// Set delegate to handle action on member (start chat, memtion)
memberViewController.delegate = self;
memberViewController.enableMention = YES;
memberViewController.enableVoipCall = YES;
memberViewController.enableVoipCall = NO;
[memberViewController displayRoomMember:selectedRoomMember withMatrixRoom:self.roomDataSource.room];
@@ -2121,7 +2121,7 @@
if (selectedContact)
{
ContactDetailsViewController *contactDetailsViewController = segue.destinationViewController;
contactDetailsViewController.enableVoipCall = YES;
contactDetailsViewController.enableVoipCall = NO;
contactDetailsViewController.contact = selectedContact;
selectedContact = nil;