From 874ca25195ad2bf3a6f5f2401ed385958e687bf7 Mon Sep 17 00:00:00 2001 From: audric Date: Sat, 18 Dec 2021 16:22:39 +1100 Subject: [PATCH 1/2] hide the call message on feature flag OFF --- ts/components/conversation/ConversationHeader.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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; } From 8321e3a55af4b3e67f2a2b0759abf86eaecb4aaf Mon Sep 17 00:00:00 2001 From: audric Date: Sat, 18 Dec 2021 16:24:02 +1100 Subject: [PATCH 2/2] bump to 1.7.6 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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",