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:
Dominik Riebeling 2007-09-23 16:34:48 +00:00
parent 1b9026a86d
commit d2560a20d7

View file

@ -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)