summaryrefslogtreecommitdiffstats
path: root/webapp/components/post.jsx
diff options
context:
space:
mode:
authorJoramWilander <jwawilander@gmail.com>2016-04-01 11:53:49 -0400
committerJoramWilander <jwawilander@gmail.com>2016-04-04 08:30:11 -0400
commit0f3d62364b7efaa553c711f2a63852a09b34277c (patch)
tree1e04f5fbd081dc32025784ccc1e990a1507632b3 /webapp/components/post.jsx
parent785553384fe96027b0e9274b6ccc8623092eda70 (diff)
downloadchat-0f3d62364b7efaa553c711f2a63852a09b34277c.tar.gz
chat-0f3d62364b7efaa553c711f2a63852a09b34277c.tar.bz2
chat-0f3d62364b7efaa553c711f2a63852a09b34277c.zip
Properly display webhook username/icon in search results
Diffstat (limited to 'webapp/components/post.jsx')
-rw-r--r--webapp/components/post.jsx11
1 files changed, 1 insertions, 10 deletions
diff --git a/webapp/components/post.jsx b/webapp/components/post.jsx
index bbf8d9bf6..7294cf163 100644
--- a/webapp/components/post.jsx
+++ b/webapp/components/post.jsx
@@ -185,18 +185,9 @@ export default class Post extends React.Component {
let profilePic = null;
if (!this.props.hideProfilePic) {
- let src = '/api/v1/users/' + post.user_id + '/image?time=' + timestamp;
- if (post.props && post.props.from_webhook && global.window.mm_config.EnablePostIconOverride === 'true') {
- if (post.props.override_icon_url) {
- src = post.props.override_icon_url;
- } else {
- src = Constants.DEFAULT_WEBHOOK_LOGO;
- }
- }
-
profilePic = (
<img
- src={src}
+ src={Utils.getProfilePicSrcForPost(post, timestamp)}
height='36'
width='36'
/>