mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-17 05:55:00 +08:00
... and take action when the counter reaches zero in verification toast
This commit is contained in:
parent
7e98ea79d2
commit
49d2ed8906
@ -38,6 +38,11 @@ export default class VerificationRequestToast extends React.PureComponent {
|
||||
let {counter} = this.state;
|
||||
counter = Math.max(0, counter - 1);
|
||||
this.setState({counter});
|
||||
|
||||
if (counter == 0) {
|
||||
clearInterval(this._intervalHandle);
|
||||
this.cancel();
|
||||
}
|
||||
}, 1000);
|
||||
}
|
||||
request.on("change", this._checkRequestIsPending);
|
||||
|
Loading…
Reference in New Issue
Block a user