feat(proxy): add http proxy protocol support
Build and Push (dev) / build (push) Successful in 36s

This commit is contained in:
2026-08-16 10:06:38 +05:00
parent 31bf50aaca
commit e9502c7a38
+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( raise ConfigError(
f"Формат прокси '{proxy_protocol}' не поддерживается. Укажите socks5 или https" f"Формат прокси '{proxy_protocol}' не поддерживается. Укажите socks5 или https"
) )