mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-11 08:01:03 -07:00
Respond with 202 for inbox request
This commit is contained in:
parent
65478160ca
commit
f53497e2c0
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ app.post('/@:user/inbox', async (req, res) => {
|
||||||
outbox: req.body,
|
outbox: req.body,
|
||||||
}).save();
|
}).save();
|
||||||
|
|
||||||
return res.sendStatus(200);
|
return res.status(202).end();
|
||||||
});
|
});
|
||||||
|
|
||||||
export default app;
|
export default app;
|
||||||
|
|
Loading…
Reference in a new issue