diff --git a/src/main/services/ProxyManager.ts b/src/main/services/ProxyManager.ts index 573d0a9f..24c741b5 100644 --- a/src/main/services/ProxyManager.ts +++ b/src/main/services/ProxyManager.ts @@ -73,7 +73,6 @@ export class ProxyManager { await this.setSessionsProxy({ mode: 'system' }) const proxyString = await session.defaultSession.resolveProxy('https://dummy.com') const [protocol, address] = proxyString.split(';')[0].split(' ') - console.log('protocol', protocol) const url = protocol === 'PROXY' ? `http://${address}` : null if (url && url !== this.config.url) { this.config.url = url.toLowerCase()