summaryrefslogtreecommitdiffstats
path: root/webapp/components/rhs_comment.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/rhs_comment.jsx')
-rw-r--r--webapp/components/rhs_comment.jsx6
1 files changed, 2 insertions, 4 deletions
diff --git a/webapp/components/rhs_comment.jsx b/webapp/components/rhs_comment.jsx
index 568d85304..6592c487d 100644
--- a/webapp/components/rhs_comment.jsx
+++ b/webapp/components/rhs_comment.jsx
@@ -212,8 +212,6 @@ export default class RhsComment extends React.Component {
const isEphemeral = Utils.isPostEphemeral(post);
const isSystemMessage = PostUtils.isSystemMessage(post);
- var timestamp = this.props.currentUser.last_picture_update;
-
let status = this.props.status;
if (post.props && post.props.from_webhook === 'true') {
status = null;
@@ -277,7 +275,7 @@ export default class RhsComment extends React.Component {
let profilePic = (
<ProfilePicture
- src={PostUtils.getProfilePicSrcForPost(post, timestamp)}
+ src={PostUtils.getProfilePicSrcForPost(post, this.props.user)}
status={status}
width='36'
height='36'
@@ -289,7 +287,7 @@ export default class RhsComment extends React.Component {
if (post.props && post.props.from_webhook) {
profilePic = (
<ProfilePicture
- src={PostUtils.getProfilePicSrcForPost(post, timestamp)}
+ src={PostUtils.getProfilePicSrcForPost(post, this.props.user)}
width='36'
height='36'
/>