proxy should be false by default

This commit is contained in:
Jarod
2025-12-30 16:45:58 +10:30
committed by Obsidian
parent 1a3cf2b27e
commit 5ba63bcf72

View File

@@ -375,7 +375,7 @@ export function loadAccounts(): Account[] {
} }
if (!a.proxy || typeof a.proxy !== 'object') { 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 { } else {
// Safe proxy property access with runtime validation // Safe proxy property access with runtime validation
const proxy = a.proxy as Record<string, unknown> const proxy = a.proxy as Record<string, unknown>