mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-05-02 14:16:59 +02:00
Disable voip call on members/contacts details.
Contact details: Start voice call failed silently #745
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user