diff --git a/packages/client/src/scripts/check-word-mute.ts b/packages/client/src/scripts/check-word-mute.ts index c04bde9e67..5ff7f24e1b 100644 --- a/packages/client/src/scripts/check-word-mute.ts +++ b/packages/client/src/scripts/check-word-mute.ts @@ -68,14 +68,6 @@ export function getWordSoftMute( return noteMuted; } - if (note.reply) { - let replyMuted = checkWordMute(note.reply, mutedWords); - if (replyMuted.muted) { - replyMuted.what = "reply"; - return replyMuted; - } - } - if (note.renote) { let renoteMuted = checkWordMute(note.renote, mutedWords); if (renoteMuted.muted) { @@ -83,6 +75,14 @@ export function getWordSoftMute( return renoteMuted; } } + + if (note.reply) { + let replyMuted = checkWordMute(note.reply, mutedWords); + if (replyMuted.muted) { + replyMuted.what = "reply"; + return replyMuted; + } + } } return NotMuted;