summaryrefslogtreecommitdiff
path: root/protocols/CurrencyRates/src/HTTPSession.cpp
diff options
context:
space:
mode:
authordartraiden <wowemuh@gmail.com>2022-01-24 17:50:56 +0300
committerdartraiden <wowemuh@gmail.com>2022-01-24 17:50:56 +0300
commitdae0eee5cac2a349102d78f71c03686a83866bb7 (patch)
treec850313ed2647b17847543d7564a810755abfd29 /protocols/CurrencyRates/src/HTTPSession.cpp
parent41ae1ce5bec8ba343750345972b26770129d81f8 (diff)
We do not need to translate account names
Diffstat (limited to 'protocols/CurrencyRates/src/HTTPSession.cpp')
-rw-r--r--protocols/CurrencyRates/src/HTTPSession.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/CurrencyRates/src/HTTPSession.cpp b/protocols/CurrencyRates/src/HTTPSession.cpp
index 74f3a32e25..6fbee42c34 100644
--- a/protocols/CurrencyRates/src/HTTPSession.cpp
+++ b/protocols/CurrencyRates/src/HTTPSession.cpp
@@ -82,7 +82,7 @@ bool CHTTPSession::Init()
NETLIBUSER nlu = {};
nlu.flags = NUF_OUTGOING | NUF_HTTPCONNS | NUF_NOHTTPSOPTION | NUF_UNICODE;
nlu.szSettingsModule = MODULENAME;
- nlu.szDescriptiveName.w = TranslateT("CurrencyRates");
+ nlu.szDescriptiveName.w = MODULENAME;
g_hNetLib = Netlib_RegisterUser(&nlu);
return (nullptr != g_hNetLib);
}