diff options
author | Christopher Speller <crspeller@gmail.com> | 2015-12-09 19:16:50 -0500 |
---|---|---|
committer | Christopher Speller <crspeller@gmail.com> | 2015-12-09 19:16:50 -0500 |
commit | 468d8ed053b1126d9821b099d4acaeaf8e11f334 (patch) | |
tree | da57414d03887a1cdff3f8c51caa0bd74db7f0c1 /web/react/components | |
parent | 985dc06e5fb9d809e4be4e5fff2c3b1ca66c1ea9 (diff) | |
parent | 99d79eee56a1b5a27f18fffd90545b4aef191bba (diff) | |
download | chat-468d8ed053b1126d9821b099d4acaeaf8e11f334.tar.gz chat-468d8ed053b1126d9821b099d4acaeaf8e11f334.tar.bz2 chat-468d8ed053b1126d9821b099d4acaeaf8e11f334.zip |
Merge pull request #1625 from florianorben/ephemeral_messages
add helper method to add ephemeral messages; also switch 'delete mess…
Diffstat (limited to 'web/react/components')
-rw-r--r-- | web/react/components/post.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/components/post.jsx b/web/react/components/post.jsx index 695d7daef..b7711ca29 100644 --- a/web/react/components/post.jsx +++ b/web/react/components/post.jsx @@ -179,7 +179,7 @@ export default class Post extends React.Component { } let profilePic = null; - if (!this.props.hideProfilePic) { + if (!this.props.hideProfilePic && post.user_id !== '0') { let src = '/api/v1/users/' + post.user_id + '/image?time=' + timestamp + '&' + utils.getSessionIndex(); if (post.props && post.props.from_webhook && global.window.mm_config.EnablePostIconOverride === 'true') { if (post.props.override_icon_url) { |