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.
@@ -32812,6 +32812,9 @@ const meetOp = sip => {
32812
32812
 
32813
32813
  return fetch(server_ + net.url, {
32814
32814
  method: net.method,
32815
+ headers: {
32816
+ 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8'
32817
+ },
32815
32818
  body: JSON.stringify({ ...param
32816
32819
  }),
32817
32820
  keepalive: true
@@ -32871,8 +32874,11 @@ const meetOp = sip => {
32871
32874
 
32872
32875
  return fetch(server_ + net.url, {
32873
32876
  method: net.method,
32874
- body: JSON.stringify({ ...param
32875
- }),
32877
+ headers: {
32878
+ 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8'
32879
+ },
32880
+ body: { ...param
32881
+ },
32876
32882
  keepalive: true
32877
32883
  }); // if(async){
32878
32884
  // return new Promise((resolve, reject) => {
Binary file