mirror of https://github.com/OpenVidu/openvidu.git
Bug fix (double JSON.stringify on WebRtcStats POST)
parent
bcf636b507
commit
d5d383ce90
|
@ -88,7 +88,7 @@ export class WebRtcStats {
|
|||
console.log("WebRtc stats succesfully sent to " + url + " for stream " + this.stream.streamId + " of connection " + this.stream.connection.connectionId);
|
||||
}
|
||||
}
|
||||
http.send(JSON.stringify(json));
|
||||
http.send(json);
|
||||
}
|
||||
|
||||
let f = (stats) => {
|
||||
|
|
Loading…
Reference in New Issue