diff options
| author | Hazelnoot <acomputerdog@gmail.com> | 2025-04-01 21:39:57 -0400 |
|---|---|---|
| committer | Hazelnoot <acomputerdog@gmail.com> | 2025-04-01 21:39:57 -0400 |
| commit | fa12f4c9b0676b7b40ed46549ba1cf638d840626 (patch) | |
| tree | 09e2c1c47f5f85797ba659fdfca78649277e59f9 /packages | |
| parent | replace new icons (diff) | |
| download | sharkey-fa12f4c9b0676b7b40ed46549ba1cf638d840626.tar.gz sharkey-fa12f4c9b0676b7b40ed46549ba1cf638d840626.tar.bz2 sharkey-fa12f4c9b0676b7b40ed46549ba1cf638d840626.zip | |
fix type error in check-word-mute.ts
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/frontend/src/utility/check-word-mute.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/utility/check-word-mute.ts b/packages/frontend/src/utility/check-word-mute.ts index 194ef0f420..37ad678555 100644 --- a/packages/frontend/src/utility/check-word-mute.ts +++ b/packages/frontend/src/utility/check-word-mute.ts @@ -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); |