diff --git a/app/components/post/post.js b/app/components/post/post.js index 18ebd34d3..9f56be8c4 100644 --- a/app/components/post/post.js +++ b/app/components/post/post.js @@ -86,8 +86,9 @@ class Post extends PureComponent { }; handlePress = () => { - if (this.props.onPress) { - this.props.onPress(this.props.post); + const {post, onPress} = this.props; + if (onPress && post.state !== Constants.POST_DELETED && !isSystemMessage(post)) { + onPress(post); } };