aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorscarlett <nia@netbsd.org>2018-08-24 21:46:45 +0100
committerscarlett <nia@netbsd.org>2018-08-24 21:46:45 +0100
commitda9629486679345689ab75a0c663c16887e524f6 (patch)
tree54f5294c1bc470aca73c46ad985bbacc8352ff51 /src
parent60b115320fcf8dc8f7895d5b518802122b4793df (diff)
Don't hide replies when inConversation.
Diffstat (limited to 'src')
-rw-r--r--src/components/status/status.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/status/status.js b/src/components/status/status.js
index 3f49da53..11b8feba 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) {