mirror of https://github.com/vector-im/riot-web
if instead of short-circuit and for readability
parent
5d45d5dfac
commit
0e0128c297
|
@ -110,7 +110,9 @@ module.exports = React.createClass({
|
|||
// abort all the timers for the users that started typing again
|
||||
usersThatStartedTyping.forEach((m) => {
|
||||
const timer = this.state.delayedStopTypingTimers[m.userId];
|
||||
timer && timer.abort();
|
||||
if (timer) {
|
||||
timer.abort();
|
||||
}
|
||||
});
|
||||
// prepare new delayedStopTypingTimers object to update state with
|
||||
let delayedStopTypingTimers = Object.assign({}, this.state.delayedStopTypingTimers);
|
||||
|
|
Loading…
Reference in New Issue