Update error message for SSL/TLS certificate verification

This commit is contained in:
Anoop M D
2025-10-11 17:08:09 +05:30
committed by GitHub
parent 45664bdb65
commit 74f0f67795

View File

@@ -36,7 +36,7 @@ const authorizeUserInWindow = ({ authorizeUrl, callbackUrl, session, additionalH
const shouldAllow = !preferencesUtil.shouldVerifyTls();
if (!shouldAllow) {
console.error(`Bruno OAuth: SSL Certificate verification failed for ${url}. Error: ${error}`);
console.error('Bruno OAuth: Disable "SSL/TLS Certificate Verification" in settings to proceed with OAuth flows that use invalid certificates.');
console.error('Bruno OAuth: Disable "SSL/TLS Certificate Verification" in settings to proceed with OAuth flows that use self-signed certificates.');
}
callback(shouldAllow);
});