Fixed for i2p

This commit is contained in:
jpk68
2026-03-13 16:12:03 +01:00
committed by SChernykh
parent 964e4a6163
commit 34f21e6236
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -408,6 +408,7 @@ bool Params::process_arg(const std::vector<std::string>& arg)
if (s == "auto") m_socks5ProxyType = ProxyType::AUTO;
if (s == "plain") m_socks5ProxyType = ProxyType::PLAIN;
if (s == "tor") m_socks5ProxyType = ProxyType::TOR;
if (s == "i2p") m_socks5ProxyType = ProxyType::I2P;
return m_socks5ProxyType != ProxyType::INVALID;
}