diff options
author | dartraiden <wowemuh@gmail.com> | 2022-01-22 22:25:24 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2022-01-22 22:25:24 +0300 |
commit | 776200f3ea1f03b3fb03c55d07e5fe93630789be (patch) | |
tree | 1a7294cb8e9eacdc739259aba21002ddac83240c /protocols/Omegle/src | |
parent | 29ceb68e4166d276aa910ddc9baa661edf652e57 (diff) |
Fixes #2997
Diffstat (limited to 'protocols/Omegle/src')
-rw-r--r-- | protocols/Omegle/src/proto.cpp | 2 |
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) {
|