From 1099465457221cc4b5b3a7571f94d62e187d23db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johan=20Sundstr=C3=B6m?= Date: Fri, 17 Dec 2021 16:46:00 -0800 Subject: [PATCH] fix: dodge "Warning: Accessing non-existent property 'createConnection' of module exports inside circular dependency" --- lib/Agents.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Agents.js b/lib/Agents.js index ed772ed..c30713d 100644 --- a/lib/Agents.js +++ b/lib/Agents.js @@ -21,7 +21,7 @@ // Modifications made by Brian White to work with socksv5 -var socks = require('../index'); +var socks = require('../lib/client'); var tls = require('tls'); var util = require('util');