Merge pull request #3578 from matrix-org/dbkr/fix_call_state_logging

Fix call state logging
pull/21833/head
David Baker 2019-10-30 10:55:37 +00:00 committed by GitHub
commit ca271dab5f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -205,7 +205,7 @@ function _setCallListeners(call) {
function _setCallState(call, roomId, status) {
console.log(
"Call state in %s changed to %s (%s)", roomId, status, (call ? call.call_state : "-"),
`Call state in ${roomId} changed to ${status} (${call ? call.call_state : "-"})`,
);
calls[roomId] = call;