summaryrefslogtreecommitdiff
path: root/protocols/Skype/src/skype_contacts.cpp
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2012-11-24 17:01:04 +0000
committerKirill Volinsky <mataes2007@gmail.com>2012-11-24 17:01:04 +0000
commitb56c4ba2c45b62c1c9c175933d2ffc26c61bf6f3 (patch)
tree436492a4b8d972b6ce2c36fbad223e8b48006792 /protocols/Skype/src/skype_contacts.cpp
parent80b73a8ba605f886dad2a17da12d99cc66e00413 (diff)
more correct work with folders
git-svn-id: http://svn.miranda-ng.org/main/trunk@2466 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype_contacts.cpp')
-rw-r--r--protocols/Skype/src/skype_contacts.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Skype/src/skype_contacts.cpp b/protocols/Skype/src/skype_contacts.cpp
index 0c809f4dfc..b15e383405 100644
--- a/protocols/Skype/src/skype_contacts.cpp
+++ b/protocols/Skype/src/skype_contacts.cpp
@@ -46,7 +46,7 @@ void CSkypeProto::UpdateContactAvatar(HANDLE hContact, CContact::Ref contact)
contact->GetPropAvatarImage(data);
if ((newTS > oldTS) || (!newTS && data.size() > 0)) //hack for avatars without timestamp
{
- wchar_t *path = this->GetContactAvatarFilePath(this->GetSettingString(hContact, "sid"));
+ wchar_t *path = this->GetContactAvatarFilePath(hContact);
FILE* fp = _wfopen(path, L"wb");
if (fp)
{