1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-11-28 05:03:59 +03:00

Remove not very useful but veryv spammy log line

This commit is contained in:
David Baker
2018-03-27 18:21:03 +01:00
parent 56b01df85b
commit c7052f7dc7

View File

@@ -3156,10 +3156,7 @@ function setupCallEventHandler(client) {
// now loop through the buffer chronologically and inject them
callEventBuffer.forEach(function(e) {
if (ignoreCallIds[e.getContent().call_id]) {
console.log(
'Ignoring previously answered/hungup call ' +
e.getContent().call_id + ' (' + e.getId() + ')',
);
// This call has previously been ansered or hung up: ignore it
return;
}
callEventHandler(e);