if instead of short-circuit and for readability

pull/21833/head
Bruno Windels 2019-01-22 11:37:18 +01:00
parent 5d45d5dfac
commit 0e0128c297
1 changed files with 3 additions and 1 deletions

View File

@ -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);