1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-11-23 17:02:25 +03:00

Improve styling a bit

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner
2021-08-03 09:42:20 +02:00
parent 5b13785115
commit ac2c09108f

View File

@@ -152,9 +152,11 @@ export class CallEventHandler {
const timeUntilTurnCresExpire = this.client.getTurnServersExpiry() - Date.now();
logger.info("Current turn creds expire in " + timeUntilTurnCresExpire + " ms");
call = createNewMatrixCall(this.client, event.getRoomId(), {
forceTURN: this.client.forceTURN,
});
call = createNewMatrixCall(
this.client,
event.getRoomId(),
{ forceTURN: this.client.forceTURN },
);
if (!call) {
logger.log(
"Incoming call ID " + content.call_id + " but this client " +