ucservice 2.6.5 → 2.6.7

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.
@@ -32821,6 +32821,9 @@ const meetOp = sip => {
32821
32821
 
32822
32822
  return fetch(server_ + net.url, {
32823
32823
  method: net.method,
32824
+ headers: {
32825
+ 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8'
32826
+ },
32824
32827
  body: JSON.stringify({ ...param
32825
32828
  }),
32826
32829
  keepalive: true
@@ -32880,8 +32883,11 @@ const meetOp = sip => {
32880
32883
 
32881
32884
  return fetch(server_ + net.url, {
32882
32885
  method: net.method,
32883
- body: JSON.stringify({ ...param
32884
- }),
32886
+ headers: {
32887
+ 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8'
32888
+ },
32889
+ body: { ...param
32890
+ },
32885
32891
  keepalive: true
32886
32892
  }); // if(async){
32887
32893
  // return new Promise((resolve, reject) => {
Binary file