From 2e70e006dae9c383ef8d66b2860c771867c4bc9b Mon Sep 17 00:00:00 2001 From: Philipp Hancke Date: Sat, 29 Aug 2015 10:14:23 -0700 Subject: [PATCH] also support outbound-rtp in addition to outboundrtp --- src/content/peerconnection/audio/js/main.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/content/peerconnection/audio/js/main.js b/src/content/peerconnection/audio/js/main.js index 43b77d059..aaf2e1bd3 100644 --- a/src/content/peerconnection/audio/js/main.js +++ b/src/content/peerconnection/audio/js/main.js @@ -254,6 +254,7 @@ window.setInterval(function() { var packets; var now = report.timestamp; if ((report.type === 'outboundrtp') || + (report.type === 'outbound-rtp') || (report.type === 'ssrc' && report.bytesSent)) { bytes = report.bytesSent; packets = report.packetsSent;