ucservice 2.6.8 → 2.6.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -32810,13 +32810,18 @@ const meetOp = sip => {
32810
32810
  // }
32811
32811
  // }, async, net.method);
32812
32812
 
32813
+ let formdata = new FormData();
32814
+
32815
+ for (let key in param) {
32816
+ formdata.append(key, param[key]);
32817
+ }
32818
+
32813
32819
  return fetch(server_ + net.url, {
32814
32820
  method: net.method,
32815
32821
  headers: {
32816
32822
  'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8'
32817
32823
  },
32818
- body: { ...param
32819
- },
32824
+ body: formdata,
32820
32825
  keepalive: true
32821
32826
  });
32822
32827
  }
@@ -32872,13 +32877,18 @@ const meetOp = sip => {
32872
32877
  delete param.async;
32873
32878
  }
32874
32879
 
32880
+ let formdata = new FormData();
32881
+
32882
+ for (let key in param) {
32883
+ formdata.append(key, param[key]);
32884
+ }
32885
+
32875
32886
  return fetch(server_ + net.url, {
32876
32887
  method: net.method,
32877
32888
  headers: {
32878
32889
  'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8'
32879
32890
  },
32880
- body: { ...param
32881
- },
32891
+ body: formdata,
32882
32892
  keepalive: true
32883
32893
  }); // if(async){
32884
32894
  // return new Promise((resolve, reject) => {
Binary file