You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-08 21:42:24 +03:00
Globally replace all console.logs via codemod (#6827)
This commit replaces all the `console.log` to `logger.log` via an automated script. Related: vector-im/element-web#18425
This commit is contained in:
@@ -50,7 +50,7 @@ export async function verifyDevice(user: User, device: IDevice) {
|
||||
}
|
||||
// if cross-signing is not explicitly disabled, check if it should be enabled first.
|
||||
if (cli.getCryptoTrustCrossSignedDevices()) {
|
||||
if (!await enable4SIfNeeded()) {
|
||||
if (!(await enable4SIfNeeded())) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
@@ -91,7 +91,7 @@ export async function legacyVerifyUser(user: User) {
|
||||
}
|
||||
// if cross-signing is not explicitly disabled, check if it should be enabled first.
|
||||
if (cli.getCryptoTrustCrossSignedDevices()) {
|
||||
if (!await enable4SIfNeeded()) {
|
||||
if (!(await enable4SIfNeeded())) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
@@ -109,7 +109,7 @@ export async function verifyUser(user: User) {
|
||||
dis.dispatch({ action: 'require_registration' });
|
||||
return;
|
||||
}
|
||||
if (!await enable4SIfNeeded()) {
|
||||
if (!(await enable4SIfNeeded())) {
|
||||
return;
|
||||
}
|
||||
const existingRequest = pendingVerificationRequestForUser(user);
|
||||
|
||||
Reference in New Issue
Block a user