Show dialpad option only if PSTN supported

This commit is contained in:
ismailgulek
2021-02-12 15:44:41 +03:00
parent 97ae5197e5
commit 478b0b356f
+5 -1
View File
@@ -3384,10 +3384,14 @@ NSNotificationName const RoomCallTileTappedNotification = @"RoomCallTileTappedNo
{
[self roomInputToolbarView:toolbarView placeCallWithVideo2:video];
}
else
else if (self.mainSession.callManager.supportsPSTN)
{
[self showVoiceCallActionSheetWith:toolbarView];
}
else
{
[self roomInputToolbarView:toolbarView placeCallWithVideo2:NO];
}
}
else
{