mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-07-07 04:26:58 +00:00
fix type error in check-word-mute.ts
This commit is contained in:
parent
c9186236f9
commit
fa12f4c9b0
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ export function checkWordMute(note: Misskey.entities.Note, me: Misskey.entities.
|
|||
return false;
|
||||
}
|
||||
|
||||
function getNoteText(note: Note): string {
|
||||
function getNoteText(note: Misskey.entities.Note): string {
|
||||
const textParts: string[] = [];
|
||||
|
||||
if (note.cw) textParts.push(note.cw);
|
||||
|
|
Loading…
Add table
Reference in a new issue