rpc.js: removed Buffer.from
There hasn't Buffer Object in react native environment.
This commit is contained in:
parent
079a810044
commit
0ec11ce16e
|
@ -180,7 +180,7 @@ function makeRequest(url, data) {
|
||||||
if (global.__debug__) {
|
if (global.__debug__) {
|
||||||
let request = global.__debug__.require('sync-request');
|
let request = global.__debug__.require('sync-request');
|
||||||
let response = request('POST', url, {
|
let response = request('POST', url, {
|
||||||
body: Buffer.from(JSON.stringify(data)),
|
body: JSON.stringify(data),
|
||||||
headers: {
|
headers: {
|
||||||
"Content-Type": "text/plain;charset=UTF-8"
|
"Content-Type": "text/plain;charset=UTF-8"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue