logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: 894da3dcca781e27ce9c5130f1021526ac8a6887
parent: 3e2f79394891bae1a0afbf8899855a0b10ef9e15
Author: Eugen Rochko <eugen@zeonfederated.com>
Date:   Mon, 16 Oct 2017 03:03:36 +0200

Clear timer when unmounting RelativeTimestamp components (#5408)

Possibly the cause of #5379, #5377

Diffstat:

Mapp/javascript/mastodon/components/relative_timestamp.js4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/app/javascript/mastodon/components/relative_timestamp.js b/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);