don't tell users to verify themselves in person

pull/21833/head
Zoe 2020-01-30 16:41:25 +00:00
parent f787bde80a
commit e58b59c26e
1 changed files with 3 additions and 1 deletions

View File

@ -117,7 +117,9 @@ export default class VerificationShowSas extends React.Component {
return <div className="mx_VerificationShowSas">
<p>{sasCaption}</p>
{sasDisplay}
<p>{_t("To be secure, do this in person or use a trusted way to communicate.")}</p>
<p>{this.props.isSelf ?
"":
_t("To be secure, do this in person or use a trusted way to communicate.")}</p>
{confirm}
</div>;
}