Don't hide replies when inConversation.

This commit is contained in:
scarlett 2018-08-24 21:46:45 +01:00
parent 60b115320f
commit da96294866
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ const Status = {
if (this.$store.state.config.replyVisibility === 'all') {
return false
}
if (this.inlineExpanded || this.expanded || !this.isReply) {
if (this.inlineExpanded || this.expanded || this.inConversation || !this.isReply) {
return false
}
if (this.status.user.id === this.$store.state.users.currentUser.id) {