diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2012-08-23 20:30:25 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2012-08-23 20:30:25 +0000 |
commit | 9eb221eb262989a03c40847aa7391d753146c2dc (patch) | |
tree | a0097a61958f6d5f0ec4f43d018735ebd91ed8fc /protocols/JabberG | |
parent | d11f93693c0de6f8a1e6c262a342f59292b0e22b (diff) |
MirVer is now kept if contact goes offline (fixes #23)
git-svn-id: http://svn.miranda-ng.org/main/trunk@1527 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/JabberG')
-rw-r--r-- | protocols/JabberG/jabber_misc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/JabberG/jabber_misc.cpp b/protocols/JabberG/jabber_misc.cpp index d47b2f5174..101711e1b7 100644 --- a/protocols/JabberG/jabber_misc.cpp +++ b/protocols/JabberG/jabber_misc.cpp @@ -540,8 +540,8 @@ void CJabberProto::UpdateMirVer(HANDLE hContact, JABBER_RESOURCE_STATUS *resourc FormatMirVer(resource, szMirVer, SIZEOF(szMirVer));
if ( szMirVer[0] )
JSetStringT( hContact, "MirVer", szMirVer );
- else
- JDeleteSetting( hContact, "MirVer" );
+// else
+// JDeleteSetting( hContact, "MirVer" );
DBVARIANT dbv;
if ( !JGetStringT( hContact, "jid", &dbv )) {
|