Merge branch 'fix/word-mutes' of https://codeberg.org/naskya/calckey into fix/word-mutes
This commit is contained in:
commit
1baf760c4c
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue