diff --git a/server/src/Core/Providers/Base/BaseAutomator.ts b/server/src/Core/Providers/Base/BaseAutomator.ts index 53f4eda2..ae6c6153 100644 --- a/server/src/Core/Providers/Base/BaseAutomator.ts +++ b/server/src/Core/Providers/Base/BaseAutomator.ts @@ -1659,10 +1659,10 @@ export class BaseAutomator { // stop retrying the fetch after COUNT retry attempt(s). cmd.push("--retry-max", "5"); - if (Config.getInstance().cfg("capture.http_proxy")) { + if (Config.getInstance().cfg("capture.http_proxy", "")) { cmd.push( "--http-proxy", - Config.getInstance().cfg("capture.http_proxy") + Config.getInstance().cfg("capture.http_proxy", "") ); }