summaryrefslogtreecommitdiffstats
path: root/web/react/components/post.jsx
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-12-10 08:32:30 -0500
committerChristopher Speller <crspeller@gmail.com>2015-12-10 08:32:30 -0500
commite80129a0e97af82a196bc47509c3a38296e8a4a2 (patch)
tree83df33bc7275b36df837be0c9f48914c281e9778 /web/react/components/post.jsx
parent47c3ff91a3987d476ca058c063115bc95345f924 (diff)
downloadchat-e80129a0e97af82a196bc47509c3a38296e8a4a2.tar.gz
chat-e80129a0e97af82a196bc47509c3a38296e8a4a2.tar.bz2
chat-e80129a0e97af82a196bc47509c3a38296e8a4a2.zip
Revert "add helper method to add ephemeral messages; also switch 'delete mess…"
Diffstat (limited to 'web/react/components/post.jsx')
-rw-r--r--web/react/components/post.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/components/post.jsx b/web/react/components/post.jsx
index b7711ca29..695d7daef 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 && post.user_id !== '0') {
+ if (!this.props.hideProfilePic) {
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) {