diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-04-10 16:12:45 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-04-10 16:12:45 +0000 |
commit | d14143e11ee7c1b504b0210fd054a1e507976574 (patch) | |
tree | 316d19b2411e8f07af37aa12e81fac8d0538d3b6 /protocols/SkypeWeb/src/skype_profile.cpp | |
parent | a30fb2e6d49c74ae2cdcf471e4f9abed267186c3 (diff) |
Skype: messagging refactoring
git-svn-id: http://svn.miranda-ng.org/main/trunk@12746 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeWeb/src/skype_profile.cpp')
-rw-r--r-- | protocols/SkypeWeb/src/skype_profile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/SkypeWeb/src/skype_profile.cpp b/protocols/SkypeWeb/src/skype_profile.cpp index 7148e5a156..386ced8bcd 100644 --- a/protocols/SkypeWeb/src/skype_profile.cpp +++ b/protocols/SkypeWeb/src/skype_profile.cpp @@ -469,7 +469,7 @@ void CSkypeProto::LoadProfile(const NETLIBHTTPREQUEST *response) ptrA username(mir_t2a(ptrT(json_as_string(json_get(root, "username")))));
MCONTACT hContact = NULL;
if (!IsMe(username))
- hContact = GetContact(username);
+ hContact = FindContact(username);
UpdateProfileFirstName(root, hContact);
UpdateProfileLastName(root, hContact);
|