summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-01-29 01:24:56 +0300
committerAndrei Karas <akaras@inbox.ru>2012-01-29 01:24:56 +0300
commitace44570149091382a555a7832f5a13eea4a05e4 (patch)
tree777318031580fff85b739f007f0647fba8063a28
parentb917a2cea65b1d9fc559fc0cf5a32797d88094b4 (diff)
downloadmv-ace44570149091382a555a7832f5a13eea4a05e4.tar.gz
mv-ace44570149091382a555a7832f5a13eea4a05e4.tar.bz2
mv-ace44570149091382a555a7832f5a13eea4a05e4.tar.xz
mv-ace44570149091382a555a7832f5a13eea4a05e4.zip
Use appname in user agents string while downloading files.
-rw-r--r--src/gui/whoisonline.cpp4
-rw-r--r--src/net/download.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/whoisonline.cpp b/src/gui/whoisonline.cpp
index e38f6ad73..ea86318a3 100644
--- a/src/gui/whoisonline.cpp
+++ b/src/gui/whoisonline.cpp
@@ -498,8 +498,8 @@ int WhoIsOnline::downloadThread(void *ptr)
curl_easy_setopt(curl, CURLOPT_WRITEDATA, ptr);
curl_easy_setopt(curl, CURLOPT_USERAGENT,
- strprintf(PACKAGE_EXTENDED_VERSION, branding
- .getValue("appShort", "mana").c_str()).c_str());
+ strprintf(PACKAGE_EXTENDED_VERSION,
+ branding.getStringValue("appName").c_str()).c_str());
curl_easy_setopt(curl, CURLOPT_ERRORBUFFER, wio->mCurlError);
curl_easy_setopt(curl, CURLOPT_URL, url.c_str());
diff --git a/src/net/download.cpp b/src/net/download.cpp
index 22af389f3..d20713dfa 100644
--- a/src/net/download.cpp
+++ b/src/net/download.cpp
@@ -239,7 +239,7 @@ int Download::downloadThread(void *ptr)
curl_easy_setopt(d->mCurl, CURLOPT_USERAGENT,
strprintf(PACKAGE_EXTENDED_VERSION,
- branding.getStringValue("appShort").c_str()).c_str());
+ branding.getStringValue("appName").c_str()).c_str());
curl_easy_setopt(d->mCurl, CURLOPT_ERRORBUFFER, d->mError);
curl_easy_setopt(d->mCurl, CURLOPT_URL, d->mUrl.c_str());
curl_easy_setopt(d->mCurl, CURLOPT_NOPROGRESS, 0);