summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--webapp/components/post_view/post_body/post_body.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/webapp/components/post_view/post_body/post_body.jsx b/webapp/components/post_view/post_body/post_body.jsx
index a60d25760..a14141dcd 100644
--- a/webapp/components/post_view/post_body/post_body.jsx
+++ b/webapp/components/post_view/post_body/post_body.jsx
@@ -73,7 +73,7 @@ export default class PostBody extends React.PureComponent {
let apostrophe = '';
let name = '...';
if (profile != null) {
- let username = profile.username;
+ let username = Utils.displayUsernameForUser(profile);
if (parentPost.props &&
parentPost.props.from_webhook &&
parentPost.props.override_username &&