From a3e94920a44e08e40ea2bf373cecfc0f8f575d25 Mon Sep 17 00:00:00 2001 From: monosans Date: Fri, 11 Apr 2025 16:22:36 +0300 Subject: [PATCH] fix proxy auth --- src/proxy.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/proxy.rs b/src/proxy.rs index e9e55e0..b5a2ae9 100644 --- a/src/proxy.rs +++ b/src/proxy.rs @@ -137,6 +137,7 @@ impl Proxy { s.push_str(username); s.push(':'); s.push_str(password); + s.push('@'); } s.push_str(&self.host); s.push(':');