diff --git a/app/javascript/gabsocial/components/status.js b/app/javascript/gabsocial/components/status.js index e1746e7f..52cdceee 100644 --- a/app/javascript/gabsocial/components/status.js +++ b/app/javascript/gabsocial/components/status.js @@ -179,7 +179,7 @@ class Status extends ImmutablePureComponent { this.props.onFetchContext(this.props.status.get('id')) this._measureHeight(prevState.height !== this.state.height) } else { - if (commentCount > 0) { + if (commentCount > 0 && !this.props.commentsLimited) { this._measureHeight(prevState.height !== this.state.height) this.props.onFetchComments(this.props.status.get('id')) } @@ -592,7 +592,7 @@ class Status extends ImmutablePureComponent { } { - descendantsIds && !isChild && !isNotification && descendantsIds.size > 0 && + descendantsIds && !isChild && !isNotification && descendantsIds.size > 0 && !commentsLimited &&