Skip to content

Commit 0ffb4cc

Browse files
committed
Disable the encryption status indicators
Currently they're a bit broken and we don't have the time to fix them.
1 parent f4096a6 commit 0ffb4cc

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

public/locales/en-GB/app.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,6 @@
6464
"crypto_version": "Crypto version: {{version}}",
6565
"device_id": "Device ID: {{id}}",
6666
"disconnected_banner": "Connectivity to the server has been lost.",
67-
"e2ee_encryption_status": {
68-
"connecting": "Connecting...",
69-
"key_invalid": "The end-to-end encrypted media key for this person is invalid",
70-
"key_missing": "You haven't received the current end-to-end encrypted media key for this person yet",
71-
"password_invalid": "This person is using a different password so you won't be able to communicate with them"
72-
},
7367
"full_screen_view_description": "<0>Submitting debug logs will help us track down the problem.</0>",
7468
"full_screen_view_h1": "<0>Oops, something's gone wrong.</0>",
7569
"group_call_loader": {

src/tile/MediaView.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,8 @@ export const MediaView = forwardRef<HTMLDivElement, Props>(
9898
)}
9999
</div>
100100
<div className={styles.fg}>
101-
{encryptionStatus !== EncryptionStatus.Okay && (
101+
{/* TODO: Bring this back once encryption status is less broken */}
102+
{/*encryptionStatus !== EncryptionStatus.Okay && (
102103
<div className={styles.status}>
103104
<Text as="span" size="sm" weight="medium" className={styles.name}>
104105
{encryptionStatus === EncryptionStatus.Connecting &&
@@ -111,7 +112,7 @@ export const MediaView = forwardRef<HTMLDivElement, Props>(
111112
t("e2ee_encryption_status.password_invalid")}
112113
</Text>
113114
</div>
114-
)}
115+
)*/}
115116
<RaisedHandIndicator
116117
raisedHandTime={raisedHandTime}
117118
miniature={avatarSize < 96}

0 commit comments

Comments
 (0)