summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugins/PluginUpdater/src/Utils.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/PluginUpdater/src/Utils.cpp b/plugins/PluginUpdater/src/Utils.cpp
index 72d9bd91c9..a3d655c300 100644
--- a/plugins/PluginUpdater/src/Utils.cpp
+++ b/plugins/PluginUpdater/src/Utils.cpp
@@ -228,8 +228,9 @@ bool DownloadFile(FILEURL *pFileURL, HNETLIBCONN &nlc)
CMStringA szUserAgent("Miranda ");
szUserAgent.Append(szMirVer);
- szUserAgent.Append("; ");
+ szUserAgent.Append(" (");
szUserAgent.Append(_T2A(wszOsVer));
+ szUserAgent.Append(")");
NETLIBHTTPREQUEST nlhr = {};
nlhr.cbSize = sizeof(nlhr);