diff --git a/app/components/post/post.js b/app/components/post/post.js index 7e6211b07..b4136e4e8 100644 --- a/app/components/post/post.js +++ b/app/components/post/post.js @@ -263,7 +263,8 @@ export default class Post extends PureComponent { const style = getStyleSheet(theme); const isReplyPost = this.isReplyPost(); - const onUsernamePress = Config.ExperimentalUsernamePressIsMention ? this.autofillUserMention : this.viewUserProfile; + const onUsernamePress = + Config.ExperimentalUsernamePressIsMention && !channelIsReadOnly ? this.autofillUserMention : this.viewUserProfile; const mergeMessage = consecutivePost && !hasComments; const highlightFlagged = isFlagged && !skipFlaggedHeader; const hightlightPinned = post.is_pinned && !skipPinnedHeader;