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

This is in ms, not seconds

This commit is contained in:
David Baker
2021-03-08 18:54:50 +00:00
parent 59c93b59bf
commit 51e817a3a2

View File

@@ -139,7 +139,7 @@ export class CallEventHandler {
}
const timeUntilTurnCresExpire = this.client.getTurnServersExpiry() - Date.now();
logger.info("Current turn creds expire in " + timeUntilTurnCresExpire + " seconds");
logger.info("Current turn creds expire in " + timeUntilTurnCresExpire + " ms");
call = createNewMatrixCall(this.client, event.getRoomId(), {
forceTURN: this.client._forceTURN,
});