diff options
author | dartraiden <wowemuh@gmail.com> | 2022-01-26 22:14:02 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2022-01-26 22:14:02 +0300 |
commit | 3a3223801c9c023d2bfa39646cf331cd958269a1 (patch) | |
tree | ca4d6e3ce9469bcb66c6de6af67173b47fe87ddc /protocols/GmailNotifier/src/main.cpp | |
parent | 6bac4c42742aa437c36f4f1b6b363acb671d0776 (diff) |
Addition to the previous commit
Diffstat (limited to 'protocols/GmailNotifier/src/main.cpp')
-rw-r--r-- | protocols/GmailNotifier/src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/GmailNotifier/src/main.cpp b/protocols/GmailNotifier/src/main.cpp index 5eaf78108d..0efc236c6d 100644 --- a/protocols/GmailNotifier/src/main.cpp +++ b/protocols/GmailNotifier/src/main.cpp @@ -89,9 +89,9 @@ int CMPlugin::Load() HookEvent(ME_CLIST_DOUBLECLICKED, OpenBrowser); NETLIBUSER nlu = {}; - nlu.flags = NUF_OUTGOING | NUF_HTTPCONNS | NUF_NOHTTPSOPTION; + nlu.flags = NUF_OUTGOING | NUF_HTTPCONNS | NUF_NOHTTPSOPTION | NUF_UNICODE; nlu.szSettingsModule = MODULENAME; - nlu.szDescriptiveName.a = MODULENAME; + nlu.szDescriptiveName.w = TranslateT("Gmail Notifier"); hNetlibUser = Netlib_RegisterUser(&nlu); CreateProtoServiceFunction(MODULENAME, PS_GETCAPS, GetCaps); |