summaryrefslogtreecommitdiffstats
path: root/web/react/components
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-08-19 10:13:26 -0400
committerChristopher Speller <crspeller@gmail.com>2015-08-19 10:13:26 -0400
commit0e994f4bd58e907620469d797ccd124eba96e248 (patch)
tree0a9a8950b46500477e71d6cda56b4c9edfd36f88 /web/react/components
parent504c652552f811c9e70dc0c6b9d6dd6f14042672 (diff)
parenta6fea82786ea31da4f04cfbaa90390e3ebe5ee7a (diff)
downloadchat-0e994f4bd58e907620469d797ccd124eba96e248.tar.gz
chat-0e994f4bd58e907620469d797ccd124eba96e248.tar.bz2
chat-0e994f4bd58e907620469d797ccd124eba96e248.zip
Merge pull request #407 from mattermost/mm-1976
MM-1976 Fixes new message indicator not appearing
Diffstat (limited to 'web/react/components')
-rw-r--r--web/react/components/post_list.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/components/post_list.jsx b/web/react/components/post_list.jsx
index bebd6847f..586ac1d37 100644
--- a/web/react/components/post_list.jsx
+++ b/web/react/components/post_list.jsx
@@ -318,7 +318,7 @@ module.exports = React.createClass({
var lastViewed = Number.MAX_VALUE;
if (ChannelStore.getCurrentMember() != null) {
- lastViewed = ChannelStore.getCurrentMember().lastViewed_at;
+ lastViewed = ChannelStore.getCurrentMember().last_viewed_at;
}
if (this.state.postList != null) {