mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-29 13:58:51 +03:00
Add https_proxy env variable
This forces Python to use the HTTP proxy for HTTPS connections.
This commit is contained in:
parent
1c8abd5c3b
commit
a8c05ca02e
1 changed files with 6 additions and 2 deletions
|
@ -1828,9 +1828,10 @@ void Session::setProxySettings(libt::proxy_settings proxySettings)
|
|||
proxySettings.proxy_peer_connections = Preferences::instance()->proxyPeerConnections();
|
||||
m_nativeSession->set_proxy(proxySettings);
|
||||
|
||||
// Define environment variable for urllib in search engine plugins
|
||||
// Define environment variables for urllib in search engine plugins
|
||||
if (Preferences::instance()->isProxyOnlyForTorrents()) {
|
||||
qputenv("http_proxy", QByteArray());
|
||||
qputenv("https_proxy", QByteArray());
|
||||
qputenv("sock_proxy", QByteArray());
|
||||
}
|
||||
else {
|
||||
|
@ -1853,14 +1854,17 @@ void Session::setProxySettings(libt::proxy_settings proxySettings)
|
|||
default:
|
||||
qDebug("Disabling HTTP communications proxy");
|
||||
qputenv("http_proxy", QByteArray());
|
||||
qputenv("https_proxy", QByteArray());
|
||||
qputenv("sock_proxy", QByteArray());
|
||||
return;
|
||||
}
|
||||
qDebug("HTTP communications proxy string: %s", qPrintable(proxy_str));
|
||||
if ((proxySettings.type == libt::proxy_settings::socks5) || (proxySettings.type == libt::proxy_settings::socks5_pw))
|
||||
qputenv("sock_proxy", proxy_str.toLocal8Bit());
|
||||
else
|
||||
else {
|
||||
qputenv("http_proxy", proxy_str.toLocal8Bit());
|
||||
qputenv("https_proxy", proxy_str.toLocal8Bit());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue