diff --git a/src/components/views/rooms/MemberDeviceInfo.js b/src/components/views/rooms/MemberDeviceInfo.js index 7e684c89a2..dfdbf53775 100644 --- a/src/components/views/rooms/MemberDeviceInfo.js +++ b/src/components/views/rooms/MemberDeviceInfo.js @@ -26,31 +26,31 @@ module.exports = React.createClass({ onVerifyClick: function() { MatrixClientPeg.get().setDeviceVerified( - this.props.userId, this.props.device.id, true + this.props.userId, this.props.device.deviceId, true ); }, onUnverifyClick: function() { MatrixClientPeg.get().setDeviceVerified( - this.props.userId, this.props.device.id, false + this.props.userId, this.props.device.deviceId, false ); }, onBlockClick: function() { MatrixClientPeg.get().setDeviceBlocked( - this.props.userId, this.props.device.id, true + this.props.userId, this.props.device.deviceId, true ); }, onUnblockClick: function() { MatrixClientPeg.get().setDeviceBlocked( - this.props.userId, this.props.device.id, false + this.props.userId, this.props.device.deviceId, false ); }, render: function() { var indicator = null, blockButton = null, verifyButton = null; - if (this.props.device.blocked) { + if (this.props.device.isBlocked()) { blockButton = (
@@ -66,7 +66,7 @@ module.exports = React.createClass({ ); } - if (this.props.device.verified) { + if (this.props.device.isVerified()) { verifyButton = (
@@ -82,22 +82,22 @@ module.exports = React.createClass({ ); } - if (this.props.device.blocked) { + if (this.props.device.isBlocked()) { indicator = ( -
+
Blocked
); - } else if (this.props.device.verified) { + } else if (this.props.device.isVerified()) { indicator = ( -
+
Verified
); } else { indicator = ( -
?
+
Unverified
); } - var deviceName = this.props.device.display_name || this.props.device.id; + var deviceName = this.props.device.display_name || this.props.device.deviceId; return (
diff --git a/src/components/views/rooms/MemberInfo.js b/src/components/views/rooms/MemberInfo.js index c02b009c39..be6663be67 100644 --- a/src/components/views/rooms/MemberInfo.js +++ b/src/components/views/rooms/MemberInfo.js @@ -159,7 +159,7 @@ module.exports = React.createClass({ if (userId == this.props.member.userId) { // no need to re-download the whole thing; just update our copy of // the list. - var devices = MatrixClientPeg.get().listDeviceKeys(userId); + var devices = MatrixClientPeg.get().getStoredDevicesForUser(userId); this.setState({devices: devices}); } }, @@ -195,7 +195,7 @@ module.exports = React.createClass({ // we got cancelled - presumably a different user now return; } - var devices = client.listDeviceKeys(member.userId); + var devices = client.getStoredDevicesForUser(member.userId); self.setState({devicesLoading: false, devices: devices}); }, function(err) { console.log("Error downloading devices", err);