diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2017-10-07 04:30:57 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2017-10-07 04:30:57 +0900 |
| commit | fffea98462b7ba3250118b4bdf4e5678cf6e4ba7 (patch) | |
| tree | 29d9eb9f5ddbe674eb0c2e27009ddd5726421334 /src/api/server.ts | |
| parent | :v: (diff) | |
| download | sharkey-fffea98462b7ba3250118b4bdf4e5678cf6e4ba7.tar.gz sharkey-fffea98462b7ba3250118b4bdf4e5678cf6e4ba7.tar.bz2 sharkey-fffea98462b7ba3250118b4bdf4e5678cf6e4ba7.zip | |
:v:
Diffstat (limited to 'src/api/server.ts')
| -rw-r--r-- | src/api/server.ts | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/api/server.ts b/src/api/server.ts index fdff0c7546..3de32d9eab 100644 --- a/src/api/server.ts +++ b/src/api/server.ts @@ -19,7 +19,12 @@ app.disable('x-powered-by'); app.set('etag', false); app.use(bodyParser.urlencoded({ extended: true })); app.use(bodyParser.json({ - type: ['application/json', 'text/plain'] + type: ['application/json', 'text/plain'], + verify: (req, res, buf, encoding) => { + if (buf && buf.length) { + (req as any).rawBody = buf.toString(encoding || 'utf8'); + } + } })); app.use(cors({ origin: true |