From e9502c7a38f44357aebae93a41dfd1660608580c Mon Sep 17 00:00:00 2001 From: root Date: Sun, 16 Aug 2026 10:06:38 +0500 Subject: [PATCH] feat(proxy): add http proxy protocol support --- config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.py b/config.py index 15adcc5..69ae827 100644 --- a/config.py +++ b/config.py @@ -253,7 +253,7 @@ class Config: ) # Валидация - if proxy_protocol not in ["socks5", "https"]: + if proxy_protocol not in ["socks5", "https", "http"]: raise ConfigError( f"Формат прокси '{proxy_protocol}' не поддерживается. Укажите socks5 или https" )