diff options
Diffstat (limited to 'protocols/Skype/src')
-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 *)
|