From 7a70129b2975c0b11d42217d4f63edfaa524a0ed Mon Sep 17 00:00:00 2001 From: DebaucheryLibrarian Date: Wed, 4 Feb 2026 21:58:15 +0100 Subject: [PATCH] Fixed proxy test not using proxy. --- src/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.js b/src/app.js index aae58dec..d0cae089 100755 --- a/src/app.js +++ b/src/app.js @@ -114,7 +114,7 @@ async function startMemorySample(snapshotTriggers = []) { async function testProxy() { if (config.proxy.enable && argv.testProxy) { - const res = await unprint.get(argv.testProxy); + const res = await unprint.get(argv.testProxy, { useProxy: true }); if (!res.ok) { throw new Error(`Proxy is offline (${res.status})`);