summaryrefslogtreecommitdiffstats
path: root/webapp/components/rhs_root_post.jsx
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2016-11-21 12:17:21 -0500
committerHarrison Healey <harrisonmhealey@gmail.com>2016-11-21 12:17:21 -0500
commit50ab9626eb61dbb73b89f3435acd900a6e7921bb (patch)
tree7682ed584ffbd599480338fba94f914e606d1934 /webapp/components/rhs_root_post.jsx
parent3f19ccf1b1a6efdcc990cf8a0270ec4ffc0c6e22 (diff)
downloadchat-50ab9626eb61dbb73b89f3435acd900a6e7921bb.tar.gz
chat-50ab9626eb61dbb73b89f3435acd900a6e7921bb.tar.bz2
chat-50ab9626eb61dbb73b89f3435acd900a6e7921bb.zip
Properly load profile for new posts that have unloaded users (#4578)
Diffstat (limited to 'webapp/components/rhs_root_post.jsx')
-rw-r--r--webapp/components/rhs_root_post.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/webapp/components/rhs_root_post.jsx b/webapp/components/rhs_root_post.jsx
index 0dae5976f..22795967a 100644
--- a/webapp/components/rhs_root_post.jsx
+++ b/webapp/components/rhs_root_post.jsx
@@ -90,7 +90,7 @@ export default class RhsRootPost extends React.Component {
var isOwner = this.props.currentUser.id === post.user_id;
var isAdmin = TeamStore.isTeamAdminForCurrentTeam() || UserStore.isSystemAdminForCurrentUser();
const isSystemMessage = post.type && post.type.startsWith(Constants.SYSTEM_MESSAGE_PREFIX);
- var timestamp = user.update_at;
+ var timestamp = user ? user.update_at : 0;
var channel = ChannelStore.get(post.channel_id);
const flagIcon = Constants.FLAG_ICON_SVG;