diff options
Diffstat (limited to 'web/react/components')
-rw-r--r-- | web/react/components/post.jsx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/web/react/components/post.jsx b/web/react/components/post.jsx index 53ffeb400..cc2e37fa8 100644 --- a/web/react/components/post.jsx +++ b/web/react/components/post.jsx @@ -102,7 +102,12 @@ module.exports = React.createClass({ currentUserCss = "current--user"; } - var timestamp = UserStore.getProfile(post.user_id).update_at; + var userProfile = UserStore.getProfile(post.user_id); + + var timestamp = UserStore.getCurrentUser().update_at; + if (userProfile) { + timestamp = userProfile.update_at; + } return ( <div> |