chore(deps): Update dependencies 🚀

This commit is contained in:
syuilo 2020-06-27 23:25:06 +09:00
parent 3f78f6f6bb
commit 3599f16d22
8 changed files with 673 additions and 566 deletions

View file

@ -96,7 +96,7 @@ router.post('/miauth/:session/check', async ctx => {
});
// Return 404 for unknown API
router.all('*', async ctx => {
router.all('(.*)', async ctx => {
ctx.status = 404;
});