rpc.js: fixed issue: #736
This commit is contained in:
parent
6108e358e2
commit
079a810044
|
@ -179,7 +179,12 @@ function makeRequest(url, data) {
|
|||
// The global __debug__ object is provided by Visual Studio Code.
|
||||
if (global.__debug__) {
|
||||
let request = global.__debug__.require('sync-request');
|
||||
let response = request('POST', url, {json: data});
|
||||
let response = request('POST', url, {
|
||||
body: Buffer.from(JSON.stringify(data)),
|
||||
headers: {
|
||||
"Content-Type": "text/plain;charset=UTF-8"
|
||||
}
|
||||
});
|
||||
|
||||
statusCode = response.statusCode;
|
||||
responseText = response.body.toString('utf-8');
|
||||
|
|
Loading…
Reference in New Issue