From 0ffb4cc23dfb40d2fcef6c929830b343123e533a Mon Sep 17 00:00:00 2001 From: Robin Date: Fri, 8 Nov 2024 09:29:20 -0500 Subject: [PATCH] Disable the encryption status indicators Currently they're a bit broken and we don't have the time to fix them. --- public/locales/en-GB/app.json | 6 ------ src/tile/MediaView.tsx | 5 +++-- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/public/locales/en-GB/app.json b/public/locales/en-GB/app.json index abb8c67b..02dd7740 100644 --- a/public/locales/en-GB/app.json +++ b/public/locales/en-GB/app.json @@ -64,12 +64,6 @@ "crypto_version": "Crypto version: {{version}}", "device_id": "Device ID: {{id}}", "disconnected_banner": "Connectivity to the server has been lost.", - "e2ee_encryption_status": { - "connecting": "Connecting...", - "key_invalid": "The end-to-end encrypted media key for this person is invalid", - "key_missing": "You haven't received the current end-to-end encrypted media key for this person yet", - "password_invalid": "This person is using a different password so you won't be able to communicate with them" - }, "full_screen_view_description": "<0>Submitting debug logs will help us track down the problem.", "full_screen_view_h1": "<0>Oops, something's gone wrong.", "group_call_loader": { diff --git a/src/tile/MediaView.tsx b/src/tile/MediaView.tsx index 13f8663a..e1367c08 100644 --- a/src/tile/MediaView.tsx +++ b/src/tile/MediaView.tsx @@ -98,7 +98,8 @@ export const MediaView = forwardRef( )}
- {encryptionStatus !== EncryptionStatus.Okay && ( + {/* TODO: Bring this back once encryption status is less broken */} + {/*encryptionStatus !== EncryptionStatus.Okay && (
{encryptionStatus === EncryptionStatus.Connecting && @@ -111,7 +112,7 @@ export const MediaView = forwardRef( t("e2ee_encryption_status.password_invalid")}
- )} + )*/}