Oops, missed that when changing the default proxy to system ...
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14832 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
1b9026a86d
commit
d2560a20d7
1 changed files with 1 additions and 1 deletions
|
@ -946,7 +946,7 @@ QUrl RbUtilQt::proxy()
|
|||
if(userSettings->value("proxytype", "system").toString() == "manual")
|
||||
return QUrl(userSettings->value("proxy").toString());
|
||||
#if defined(Q_OS_LINUX)
|
||||
else if(userSettings->value("proxytype") == "system")
|
||||
else if(userSettings->value("proxytype", "system").toString() == "system")
|
||||
return QUrl(getenv("http_proxy"));
|
||||
#endif
|
||||
#if defined(Q_OS_WIN32)
|
||||
|
|
Loading…
Reference in a new issue