From 5ba63bcf726a916b2919a88a1993e57d0c0ef265 Mon Sep 17 00:00:00 2001 From: Jarod Date: Tue, 30 Dec 2025 16:45:58 +1030 Subject: [PATCH] proxy should be false by default --- src/util/state/Load.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/state/Load.ts b/src/util/state/Load.ts index bfb6bdc..03b5bae 100644 --- a/src/util/state/Load.ts +++ b/src/util/state/Load.ts @@ -375,7 +375,7 @@ export function loadAccounts(): Account[] { } if (!a.proxy || typeof a.proxy !== 'object') { - a.proxy = { proxyAxios: true, url: '', port: 0, username: '', password: '' } + a.proxy = { proxyAxios: false, url: '', port: 0, username: '', password: '' } } else { // Safe proxy property access with runtime validation const proxy = a.proxy as Record