summaryrefslogtreecommitdiff
path: root/plugins/SendScreenshotPlus/src
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 /plugins/SendScreenshotPlus/src
parent41ae1ce5bec8ba343750345972b26770129d81f8 (diff)
We do not need to translate account names
Diffstat (limited to 'plugins/SendScreenshotPlus/src')
-rw-r--r--plugins/SendScreenshotPlus/src/Main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/SendScreenshotPlus/src/Main.cpp b/plugins/SendScreenshotPlus/src/Main.cpp
index fb8c92ed28..1807303205 100644
--- a/plugins/SendScreenshotPlus/src/Main.cpp
+++ b/plugins/SendScreenshotPlus/src/Main.cpp
@@ -210,7 +210,7 @@ int hook_ModulesLoaded(WPARAM, LPARAM)
// Netlib register
NETLIBUSER nlu = {};
nlu.szSettingsModule = __PLUGIN_NAME;
- nlu.szDescriptiveName.w = TranslateT("SendSS");
+ nlu.szDescriptiveName.w = __PLUGIN_NAME;
nlu.flags = NUF_OUTGOING | NUF_HTTPCONNS | NUF_UNICODE; //|NUF_NOHTTPSOPTION;
g_hNetlibUser = Netlib_RegisterUser(&nlu);