We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58f7a33 commit f7850c5Copy full SHA for f7850c5
1 file changed
src/service/service-host.js
@@ -41,9 +41,10 @@ class ServiceHost {
41
42
if(debug.enabled){ this.apiApp.use(morgan('combined')) }
43
44
+ this.apiApp.use(multer().array())
45
this.apiApp.use(bodyParser.urlencoded({ extended: true }))
46
this.apiApp.use(bodyParser.json())
- this.apiApp.use(multer().none())
47
+ this.apiApp.use(bodyParser.raw())
48
49
this.apiApp.set('trust proxy', trust_proxy)
50
0 commit comments