This commit is contained in:
syuilo 2018-04-08 17:40:03 +09:00
parent 0c0d05fcb4
commit a16b96ccc0

View file

@ -12,7 +12,7 @@ const summarize = (note: any): string => {
summary += note.text ? note.text : '';
// メディアが添付されているとき
if (note.media) {
if (note.media.length != 0) {
summary += ` (${note.media.length}つのメディア)`;
}