This commit is contained in:
syuilo 2018-10-09 05:31:26 +09:00
parent ddebd0a808
commit 0482566662

View File

@ -17,7 +17,7 @@ const summarize = (note: any): string => {
summary += note.text ? note.text : '';
// ファイルが添付されているとき
if (note.files.length != 0) {
if ((note.files || []).length != 0) {
summary += ` (${note.files.length}つのファイル)`;
}