1 Commits

Author SHA1 Message Date
root e9502c7a38 feat(proxy): add http proxy protocol support
Build and Push (dev) / build (push) Successful in 36s
2026-08-16 10:06:38 +05:00
+1 -1
View File
@@ -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"
)