File tree Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Original file line number Diff line number Diff line change 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" : {
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments