diff --git a/src/mainview/components/ConversationSmartListViewItemDelegate.qml b/src/mainview/components/ConversationSmartListViewItemDelegate.qml index 226da609c5e3defa6ec04bc838537cb9cf0b18c1..a5c349b88f16b4b453b1a67e68ada398928d5c26 100644 --- a/src/mainview/components/ConversationSmartListViewItemDelegate.qml +++ b/src/mainview/components/ConversationSmartListViewItemDelegate.qml @@ -198,7 +198,10 @@ ItemDelegate { ConversationsAdapter.selectConversation(AccountAdapter.currentAccountId, UID, false) - CallAdapter.placeCall() + if (AccountAdapter.currentAccountType === Profile.Type.SIP) + CallAdapter.placeAudioOnlyCall() + else + CallAdapter.placeCall() communicationPageMessageWebView.setSendContactRequestButtonVisible(false) } }