diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2015-05-10 17:57:04 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2015-05-10 17:57:04 +0000 |
commit | 49a61ca4089823618d54965d24ce32f13e3b753f (patch) | |
tree | 393f2374674f7bd389d59209b6e08607b6cb1876 /protocols/SkypeWeb/src/skype_proto.cpp | |
parent | fb2153343180082ffb144eb2585e20bcf25351eb (diff) |
SkypeWeb: AuthRequest greeting fix. Cleanup.
git-svn-id: http://svn.miranda-ng.org/main/trunk@13512 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeWeb/src/skype_proto.cpp')
-rw-r--r-- | protocols/SkypeWeb/src/skype_proto.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/SkypeWeb/src/skype_proto.cpp b/protocols/SkypeWeb/src/skype_proto.cpp index 0761a652ce..3c58c27066 100644 --- a/protocols/SkypeWeb/src/skype_proto.cpp +++ b/protocols/SkypeWeb/src/skype_proto.cpp @@ -168,7 +168,7 @@ int CSkypeProto::AuthRequest(MCONTACT hContact, const PROTOCHAR *szMessage) ptrA token(getStringA("TokenSecret"));
ptrA skypename(getStringA(hContact, SKYPE_SETTINGS_ID));
- PushRequest(new AddContactRequest(token, skypename, ptrA(mir_t2a(szMessage))));
+ PushRequest(new AddContactRequest(token, skypename, ptrA(mir_utf8encodeT(szMessage))));
return 0;
}
|