This commit is contained in:
syuilo 2018-08-04 12:37:32 +09:00
parent 1a2ede3764
commit 8817ef3685

View file

@ -81,7 +81,7 @@ process.on('message', async msg => {
await request.post(`${config.host}/api/notes/create`, { await request.post(`${config.host}/api/notes/create`, {
json: { json: {
i: config.i, i: config.i,
renoteId: note.id, renoteId: note ? note.id : null,
text: text text: text
} }
}); });