mirror of
https://github.com/mempool/mempool.git
synced 2025-02-24 14:50:52 +01:00
Add support for application/base64 content type
This commit is contained in:
parent
584f443f56
commit
74dbd6cee1
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ class Server {
|
||||||
next();
|
next();
|
||||||
})
|
})
|
||||||
.use(express.urlencoded({ extended: true }))
|
.use(express.urlencoded({ extended: true }))
|
||||||
.use(express.text())
|
.use(express.text({ type: ['text/plain', 'application/base64'] }))
|
||||||
;
|
;
|
||||||
|
|
||||||
this.server = http.createServer(this.app);
|
this.server = http.createServer(this.app);
|
||||||
|
|
Loading…
Add table
Reference in a new issue