From abb37e2ee8d01ca0d26d991d0532fcba947e43c8 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Tue, 5 May 2026 13:40:26 +0300 Subject: [PATCH] fix reply popover for muted posts --- src/components/status/status.js | 3 +++ src/components/status_popover/status_popover.vue | 1 + 2 files changed, 4 insertions(+) diff --git a/src/components/status/status.js b/src/components/status/status.js index 7b4a31561..0266ff1a0 100644 --- a/src/components/status/status.js +++ b/src/components/status/status.js @@ -152,6 +152,7 @@ const Status = { 'simpleTree', 'showOtherRepliesAsButton', 'dive', + 'ignoreMute', 'controlledThreadDisplayStatus', 'controlledToggleThreadDisplay', @@ -345,6 +346,7 @@ const Status = { } }, muted() { + if (this.ignoreMute) return false if (this.statusoid.user.id === this.currentUser.id) return false return !this.unmuted && !this.shouldNotMute && this.muteReasons.length > 0 }, @@ -366,6 +368,7 @@ const Status = { ) }, shouldNotMute() { + if (this.ignoreMute) return true if (this.isFocused) return true const { status } = this const { reblog } = status diff --git a/src/components/status_popover/status_popover.vue b/src/components/status_popover/status_popover.vue index 839f82e90..ccfb06c02 100644 --- a/src/components/status_popover/status_popover.vue +++ b/src/components/status_popover/status_popover.vue @@ -16,6 +16,7 @@ :is-preview="true" :statusoid="status" :compact="true" + :ignore-mute="true" />