diff --git a/src/main/services/ProxyManager.ts b/src/main/services/ProxyManager.ts index f1b455ac..6ad7807c 100644 --- a/src/main/services/ProxyManager.ts +++ b/src/main/services/ProxyManager.ts @@ -17,10 +17,12 @@ export class ProxyManager { constructor() { this.config = { - mode: 'system', + mode: 'none', url: '' } - this.monitorSystemProxy() + if (this.config.mode === 'system') { + this.monitorSystemProxy() + } } private async setSessionsProxy(config: _ProxyConfig): Promise {