From da9629486679345689ab75a0c663c16887e524f6 Mon Sep 17 00:00:00 2001 From: scarlett Date: Fri, 24 Aug 2018 21:46:45 +0100 Subject: [PATCH] Don't hide replies when inConversation. --- src/components/status/status.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/status/status.js b/src/components/status/status.js index 3f49da5357..11b8febab4 100644 --- a/src/components/status/status.js +++ b/src/components/status/status.js @@ -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) {