mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 21:24:59 +08:00
Fix call state logging
console.log does not work that way
This commit is contained in:
parent
b44e14a722
commit
342e7856cd
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user