Only show User Info verify button if the other user has e2ee devices

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
pull/21833/head
Michael Telatynski 2020-09-18 14:34:51 +01:00
parent 5a6ab95f84
commit adcb75facb
1 changed files with 1 additions and 1 deletions

View File

@ -1306,7 +1306,7 @@ const BasicUserInfo = ({room, member, groupId, devices, isRoomEncrypted}) => {
const showDeviceListSpinner = devices === undefined;
if (canVerify) {
if (hasCrossSigningKeys !== undefined) {
if (hasCrossSigningKeys !== undefined && devices.length > 0) {
// Note: mx_UserInfo_verifyButton is for the end-to-end tests
verifyButton = (
<AccessibleButton className="mx_UserInfo_field mx_UserInfo_verifyButton" onClick={() => {