This commit is contained in:
syuilo 2018-05-29 11:25:28 +09:00
parent 281971f4a4
commit a0a4ce4dd9
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ module.exports = (params, user) => new Promise(async (res, rej) => {
return rej('note not found');
}
const ids = note._replyIds.slice(offset, offset + limit);
const ids = (note._replyIds || []).slice(offset, offset + limit);
// Serialize
res(await Promise.all(ids.map(id => pack(id, user))));