Bug fix (double JSON.stringify on WebRtcStats POST)

pull/30/head
pabloFuente 2018-03-01 16:40:01 +01:00
parent bcf636b507
commit d5d383ce90
1 changed files with 1 additions and 1 deletions

View File

@ -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); 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) => { let f = (stats) => {