diff options
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 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) { |