diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2013-04-13 16:54:06 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2013-04-13 16:54:06 +0000 |
commit | 002cab8875c415238cdcc74276872bb33f8523e1 (patch) | |
tree | 5bbd31ea55da418018d9c40d4f937511d88ab462 /protocols/Skype/src/skype_contacts.cpp | |
parent | 82c9e950fca702c8c9ae0074c90b81fe054d49df (diff) |
- fixed avatar set (loading on skype server)
- fixed search by name
git-svn-id: http://svn.miranda-ng.org/main/trunk@4439 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype_contacts.cpp')
-rw-r--r-- | protocols/Skype/src/skype_contacts.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Skype/src/skype_contacts.cpp b/protocols/Skype/src/skype_contacts.cpp index acfa6a56e6..0ed653c7e6 100644 --- a/protocols/Skype/src/skype_contacts.cpp +++ b/protocols/Skype/src/skype_contacts.cpp @@ -468,7 +468,7 @@ void CSkypeProto::OnContactFinded(HANDLE hSearch, CContact::Ref contact) void __cdecl CSkypeProto::SearchBySidAsync(void* arg)
{
- const char *sid = (char *)arg;
+ const char *sid = ::mir_u2a((wchar_t*)arg);
HANDLE hContact = this->GetContactBySid(sid);
if (hContact)
|