summaryrefslogtreecommitdiff
path: root/protocols/Omegle/src
diff options
context:
space:
mode:
authordartraiden <wowemuh@gmail.com>2022-01-22 22:25:24 +0300
committerdartraiden <wowemuh@gmail.com>2022-01-22 22:25:24 +0300
commit776200f3ea1f03b3fb03c55d07e5fe93630789be (patch)
tree1a7294cb8e9eacdc739259aba21002ddac83240c /protocols/Omegle/src
parent29ceb68e4166d276aa910ddc9baa661edf652e57 (diff)
Fixes #2997
Diffstat (limited to 'protocols/Omegle/src')
-rw-r--r--protocols/Omegle/src/proto.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Omegle/src/proto.cpp b/protocols/Omegle/src/proto.cpp
index a8c17d19d5..7a446f36b8 100644
--- a/protocols/Omegle/src/proto.cpp
+++ b/protocols/Omegle/src/proto.cpp
@@ -46,7 +46,7 @@ OmegleProto::OmegleProto(const char* proto_name, const wchar_t* username) :
NETLIBUSER nlu = {};
nlu.flags = NUF_INCOMING | NUF_OUTGOING | NUF_HTTPCONNS | NUF_UNICODE;
nlu.szSettingsModule = m_szModuleName;
- mir_snwprintf(descr, TranslateT("%s server connection"), m_tszUserName);
+ mir_snwprintf(descr, TranslateT("%s (server)"), m_tszUserName);
nlu.szDescriptiveName.w = descr;
m_hNetlibUser = Netlib_RegisterUser(&nlu);
if (m_hNetlibUser == nullptr) {