diff --git a/package.json b/package.json index 210c3022c..d7c438c7f 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "session-desktop", "productName": "Session", "description": "Private messaging from your desktop", - "version": "1.7.5", + "version": "1.7.6", "license": "GPL-3.0", "author": { "name": "Loki Project", diff --git a/ts/components/conversation/ConversationHeader.tsx b/ts/components/conversation/ConversationHeader.tsx index 1ff92948a..e1d7db689 100644 --- a/ts/components/conversation/ConversationHeader.tsx +++ b/ts/components/conversation/ConversationHeader.tsx @@ -206,7 +206,13 @@ const CallButton = () => { const hasOngoingCall = useSelector(getHasOngoingCall); const canCall = !(hasIncomingCall || hasOngoingCall); - if (!isPrivate || isMe || !selectedConvoKey || isBlocked) { + if ( + !isPrivate || + isMe || + !selectedConvoKey || + isBlocked || + !window.lokiFeatureFlags.useCallMessage + ) { return null; }