Clear timer when unmounting RelativeTimestamp components (#5408)

Possibly the cause of #5379, #5377
master
Eugen Rochko 7 years ago committed by GitHub
parent 3e2f793948
commit 894da3dcca
  1. 4
      app/javascript/mastodon/components/relative_timestamp.js

@ -94,6 +94,10 @@ export default class RelativeTimestamp extends React.Component {
this._scheduleNextUpdate(nextProps, nextState);
}
componentWillUnmount () {
clearTimeout(this._timer);
}
_scheduleNextUpdate (props, state) {
clearTimeout(this._timer);

Loading…
Cancel
Save