mirror of https://github.com/vector-im/riot-web
Merge pull request #3578 from matrix-org/dbkr/fix_call_state_logging
Fix call state loggingpull/21833/head
commit
ca271dab5f
|
@ -205,7 +205,7 @@ function _setCallListeners(call) {
|
||||||
|
|
||||||
function _setCallState(call, roomId, status) {
|
function _setCallState(call, roomId, status) {
|
||||||
console.log(
|
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;
|
calls[roomId] = call;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue