Fix a bug with stats accumulating. Fix a typo.

pull/228/merge 397
Boris Grozev 10 years ago
parent 5b44edb3cc
commit aee7a8e1bd
  1. 35683
      libs/app.bundle.js
  2. 2
      modules/statistics/RTPStatsCollector.js
  3. 9
      modules/xmpp/xmpp.js

File diff suppressed because it is too large Load Diff

@ -342,7 +342,7 @@ function acceptReport(id, type) {
id.substring(0, 20) == "googLibjingleSession")
return false;
if (type == "goodComponent")
if (type == "googComponent")
return false;
return true;

@ -369,9 +369,15 @@ var XMPP = {
if(!dontSend)
connection.emuc.sendPresence();
},
/**
* Sends 'data' as a log message to the focus. Returns true iff a message
* was sent.
* @param data
* @returns {boolean} true iff a message was sent.
*/
sendLogs: function (data) {
if(!connection.emuc.focusMucJid)
return;
return false;
var deflate = true;
@ -391,6 +397,7 @@ var XMPP = {
message.up();
connection.send(message);
return true;
},
populateData: function () {
var data = {};

Loading…
Cancel
Save