-
Notifications
You must be signed in to change notification settings - Fork 65
Closed
Labels
Description
sdk-node/lib/apicontrollersbase.js
Lines 83 to 93 in ab098d7
| var reqOpts = { | |
| url: this._endpoint, | |
| method: 'POST', | |
| headers: { | |
| 'Content-Type': 'application/json', | |
| 'Content-Length': this._request.length | |
| }, | |
| json: true, | |
| timeout: config.timeout, | |
| body: this._request | |
| }; |
this._request is JS Object. It does not contain a length property.
These lines of code can be removed, since they do not affect anything:
sdk-node/lib/apicontrollersbase.js
Lines 86 to 89 in ab098d7
| headers: { | |
| 'Content-Type': 'application/json', | |
| 'Content-Length': this._request.length | |
| }, |
Proof in the request docs:
https://github.com/request/request#requestoptions-callback
Reactions are currently unavailable