You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-07-30 02:21:17 +03:00
Fix deviceverifybuttons
Use DeviceInfo from deviceVerificationChanged event rather than calling non-existent getStoredDevice
This commit is contained in:
@ -43,9 +43,9 @@ export default React.createClass({
|
||||
cli.removeListener("deviceVerificationChanged", this.onDeviceVerificationChanged);
|
||||
},
|
||||
|
||||
onDeviceVerificationChanged: function(userId, deviceId) {
|
||||
onDeviceVerificationChanged: function(userId, deviceId, deviceInfo) {
|
||||
if (userId === this.props.userId && deviceId === this.props.device.deviceId) {
|
||||
this.setState({ device: MatrixClientPeg.get().getStoredDevice(userId, deviceId) });
|
||||
this.setState({ device: deviceInfo });
|
||||
}
|
||||
},
|
||||
|
||||
|
Reference in New Issue
Block a user