diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-11-24 12:48:45 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-11-24 12:48:45 +0000 |
commit | 67ea1476b00f5069633d585342d5b707d2bcb6a7 (patch) | |
tree | c71df433917359697f45ce381ab8f40bd442bc74 /protocols/Skype | |
parent | 53e778f02b7aa129035eecc4465385a5b3c06527 (diff) |
fixed auth request text
git-svn-id: http://svn.miranda-ng.org/main/trunk@2461 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype')
-rw-r--r-- | protocols/Skype/src/skype_proto.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Skype/src/skype_proto.cpp b/protocols/Skype/src/skype_proto.cpp index 12155af7e3..665a0ce854 100644 --- a/protocols/Skype/src/skype_proto.cpp +++ b/protocols/Skype/src/skype_proto.cpp @@ -125,7 +125,7 @@ int __cdecl CSkypeProto::AuthRequest(HANDLE hContact, const TCHAR* szMessage) SEString sid(::mir_u2a(this->GetSettingString(hContact, "sid")));
if (g_skype->GetContact(sid, contact)) {
contact->SetBuddyStatus(Contact::AUTHORIZED_BY_ME);
- contact->SendAuthRequest(::mir_u2a(szMessage));
+ contact->SendAuthRequest(::mir_utf8encodeW(szMessage));
}
return 0;
|