Fix deviceverifybuttons
Use DeviceInfo from deviceVerificationChanged event rather than calling non-existent getStoredDevice
This commit is contained in:
parent
41936a957f
commit
827b5a6811
1 changed files with 2 additions and 2 deletions
|
@ -43,9 +43,9 @@ export default React.createClass({
|
||||||
cli.removeListener("deviceVerificationChanged", this.onDeviceVerificationChanged);
|
cli.removeListener("deviceVerificationChanged", this.onDeviceVerificationChanged);
|
||||||
},
|
},
|
||||||
|
|
||||||
onDeviceVerificationChanged: function(userId, deviceId) {
|
onDeviceVerificationChanged: function(userId, deviceId, deviceInfo) {
|
||||||
if (userId === this.props.userId && deviceId === this.props.device.deviceId) {
|
if (userId === this.props.userId && deviceId === this.props.device.deviceId) {
|
||||||
this.setState({ device: MatrixClientPeg.get().getStoredDevice(userId, deviceId) });
|
this.setState({ device: deviceInfo });
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue