diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-04-30 09:38:26 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-04-30 09:38:26 +0000 |
commit | 3828ee35499c53c7d53a88c6551a2a828ab8b7cf (patch) | |
tree | f2993f1baa09bb2b7767ad98de23352a32df5f21 /protocols/Skype | |
parent | f33af68a6bb36bb2cbfa69bed3f71beacefaaccc (diff) |
checking profiles info every time
git-svn-id: http://svn.miranda-ng.org/main/trunk@4573 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype')
-rw-r--r-- | protocols/Skype/src/skype_profile.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/Skype/src/skype_profile.cpp b/protocols/Skype/src/skype_profile.cpp index f8c747d49a..deba9a4733 100644 --- a/protocols/Skype/src/skype_profile.cpp +++ b/protocols/Skype/src/skype_profile.cpp @@ -296,8 +296,8 @@ void CSkypeProto::UpdateProfile(SEObject *obj, HANDLE hContact) this->UpdateProfileAvatar(obj, hContact);
uint newTS = hContact ? obj->GetUintProp(Contact::P_PROFILE_TIMESTAMP) : obj->GetUintProp(Account::P_PROFILE_TIMESTAMP);
- if (newTS > ::db_get_dw(hContact, this->m_szModuleName, "ProfileTS", 0))
- {
+ //if (newTS > ::db_get_dw(hContact, this->m_szModuleName, "ProfileTS", 0))
+ //{
this->UpdateProfileAboutText(obj, hContact);
this->UpdateProfileBirthday(obj, hContact);
this->UpdateProfileCity(obj, hContact);
@@ -324,7 +324,7 @@ void CSkypeProto::UpdateProfile(SEObject *obj, HANDLE hContact) }
::db_set_dw(hContact, this->m_szModuleName, "ProfileTS", newTS);
- }
+ //}
}
void __cdecl CSkypeProto::LoadOwnInfo(void *)
|