mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
Fix bug
This commit is contained in:
parent
4ea03d8111
commit
d451c3b451
1 changed files with 1 additions and 1 deletions
|
@ -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}つのメディア)`;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue