From e58b59c26e198b512471e157d1d120b5d9fa9262 Mon Sep 17 00:00:00 2001 From: Zoe Date: Thu, 30 Jan 2020 16:41:25 +0000 Subject: [PATCH] don't tell users to verify themselves in person --- src/components/views/verification/VerificationShowSas.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/views/verification/VerificationShowSas.js b/src/components/views/verification/VerificationShowSas.js index 25f174fb30..4d3c962385 100644 --- a/src/components/views/verification/VerificationShowSas.js +++ b/src/components/views/verification/VerificationShowSas.js @@ -117,7 +117,9 @@ export default class VerificationShowSas extends React.Component { return

{sasCaption}

{sasDisplay} -

{_t("To be secure, do this in person or use a trusted way to communicate.")}

+

{this.props.isSelf ? + "": + _t("To be secure, do this in person or use a trusted way to communicate.")}

{confirm}
; }