fix: soft mutes not being applied to boosts

This commit is contained in:
freeplay 2023-06-30 18:43:35 -04:00
parent 72a54a48f7
commit cda1c19454

View File

@ -332,7 +332,7 @@ let appearNote = $computed(() =>
const isMyRenote = $i && $i.id === note.userId;
const showContent = ref(false);
const isDeleted = ref(false);
const muted = ref(getWordSoftMute(note, $i, defaultStore.state.mutedWords));
const muted = ref(getWordSoftMute(appearNote, $i, defaultStore.state.mutedWords));
const translation = ref(null);
const translating = ref(false);
const enableEmojiReactions = defaultStore.state.enableEmojiReactions;