summaryrefslogtreecommitdiff
path: root/client/UpdatedConfig.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'client/UpdatedConfig.cpp')
-rw-r--r--client/UpdatedConfig.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/client/UpdatedConfig.cpp b/client/UpdatedConfig.cpp
index 99a89db..9cf91dd 100644
--- a/client/UpdatedConfig.cpp
+++ b/client/UpdatedConfig.cpp
@@ -65,13 +65,11 @@ void UpdatedConfig::update()
retryFailed = false;
}
- /*
if (! (updateStatus & (1 << SslClient::Config)))
{
client->SendRequest(SslClient::Config);
}
- */
- if (! (updateStatus & (1 << SslClient::GenericProxyList)))
+ else if (! (updateStatus & (1 << SslClient::GenericProxyList)))
{
client->SendRequest(SslClient::GenericProxyList);
}
@@ -128,6 +126,7 @@ void UpdatedConfig::gotServerReply(SslClient::RequestType &type, QByteArray &con
{
case SslClient::Config:
ParseConfig(confdata.constData());
+ Logger::Debug("Config data:\n %s", confdata.constData());
break;
case SslClient::GenericProxyList:
ParseGenericProxies(confdata.constData());