mirror of
https://codeberg.org/yeentown/barkey
synced 2024-11-22 06:45:11 +00:00
avoid TS errors in get-note-summary
This commit is contained in:
parent
cf49701c2a
commit
6785996960
2 changed files with 3 additions and 3 deletions
|
@ -30,8 +30,8 @@ export const getNoteSummary = (note: Packed<'Note'>): string => {
|
|||
}
|
||||
|
||||
// ファイルが添付されているとき
|
||||
if ((note.files ?? []).length !== 0) {
|
||||
summary += ` (📎${note.files!.length})`;
|
||||
if (note.files && note.files.length !== 0) {
|
||||
summary += ` (📎${note.files.length})`;
|
||||
}
|
||||
|
||||
// 投票が添付されているとき
|
||||
|
|
|
@ -35,7 +35,7 @@ export const getNoteSummary = (note?: Misskey.entities.Note | null): string => {
|
|||
}
|
||||
|
||||
// ファイルが添付されているとき
|
||||
if ((note.files || []).length !== 0) {
|
||||
if (note.files && note.files.length !== 0) {
|
||||
summary += ` (${i18n.tsx.withNFiles({ n: note.files.length })})`;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue