summaryrefslogtreecommitdiffstats
path: root/web/react/components/post_list.jsx
diff options
context:
space:
mode:
authorAsaad Mahmood <Unknowngi@live.com>2015-07-10 20:24:18 +0500
committerAsaad Mahmood <Unknowngi@live.com>2015-07-10 20:24:18 +0500
commit14395689ca33edb6104b4c9e71d07847f196285e (patch)
tree7c01431e2119acf6a37f4a7d760210d8c841b137 /web/react/components/post_list.jsx
parent53d0420e2436e203e8467f22ea066ea13b2bce41 (diff)
parentff128d7c161ead05d0cd7cc6dbbe2dbdd06259e1 (diff)
downloadchat-14395689ca33edb6104b4c9e71d07847f196285e.tar.gz
chat-14395689ca33edb6104b4c9e71d07847f196285e.tar.bz2
chat-14395689ca33edb6104b4c9e71d07847f196285e.zip
Merge branch 'master' of https://github.com/mattermost/platform
Diffstat (limited to 'web/react/components/post_list.jsx')
-rw-r--r--web/react/components/post_list.jsx5
1 files changed, 5 insertions, 0 deletions
diff --git a/web/react/components/post_list.jsx b/web/react/components/post_list.jsx
index d6dc9ce30..177e4a1db 100644
--- a/web/react/components/post_list.jsx
+++ b/web/react/components/post_list.jsx
@@ -78,6 +78,7 @@ module.exports = React.createClass({
PostStore.addChangeListener(this._onChange);
ChannelStore.addChangeListener(this._onChange);
+ UserStore.addStatusesChangeListener(this._onChange);
SocketStore.addChangeListener(this._onSocketChange);
$(".post-list-holder-by-time").perfectScrollbar();
@@ -157,6 +158,7 @@ module.exports = React.createClass({
componentWillUnmount: function() {
PostStore.removeChangeListener(this._onChange);
ChannelStore.removeChangeListener(this._onChange);
+ UserStore.removeStatusesChangeListener(this._onChange);
SocketStore.removeChangeListener(this._onSocketChange);
$('body').off('click.userpopover');
},
@@ -193,6 +195,9 @@ module.exports = React.createClass({
this.scrolledToNew = false;
}
this.setState(newState);
+ } else {
+ // Updates the timestamp on each post
+ this.forceUpdate()
}
},
_onSocketChange: function(msg) {