mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2024-12-11 13:18:09 +09:00
Fix bug
This commit is contained in:
parent
ddebd0a808
commit
0482566662
@ -17,7 +17,7 @@ const summarize = (note: any): string => {
|
|||||||
summary += note.text ? note.text : '';
|
summary += note.text ? note.text : '';
|
||||||
|
|
||||||
// ファイルが添付されているとき
|
// ファイルが添付されているとき
|
||||||
if (note.files.length != 0) {
|
if ((note.files || []).length != 0) {
|
||||||
summary += ` (${note.files.length}つのファイル)`;
|
summary += ` (${note.files.length}つのファイル)`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user