This commit is contained in:
syuilo 2018-10-09 05:31:26 +09:00
parent bb9ab31d5e
commit 7f5a69f4d8
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69

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}つのファイル)`;
}