From d36f5376e38f30fe12fd3459aa833def230e5302 Mon Sep 17 00:00:00 2001 From: syuilo Date: Sun, 1 Apr 2018 16:46:33 +0900 Subject: [PATCH] Fix --- src/server/activitypub/inbox.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/activitypub/inbox.ts b/src/server/activitypub/inbox.ts index f76e750d2..b4761d997 100644 --- a/src/server/activitypub/inbox.ts +++ b/src/server/activitypub/inbox.ts @@ -8,7 +8,7 @@ const app = express(); app.disable('x-powered-by'); app.use(bodyParser.json()); -app.get('/@:user/inbox', async (req, res) => { +app.post('/@:user/inbox', async (req, res) => { let parsed; try {