mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-10 23:51:01 -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,
|
||||
}).save();
|
||||
|
||||
return res.sendStatus(200);
|
||||
return res.status(202).end();
|
||||
});
|
||||
|
||||
export default app;
|
||||
|
|
Loading…
Reference in a new issue