summaryrefslogtreecommitdiff
path: root/protocols
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2019-12-15 21:21:14 +0300
committerGeorge Hazan <ghazan@miranda.im>2019-12-15 21:21:14 +0300
commit29e95647e80496938bf7bacc1afd352b687aed1f (patch)
treeeb44c6e1fa2c4f162574fb1e4c1dc882c07b86fa /protocols
parentdf0a0e35d4862a8a1e35238452d61a45b7687965 (diff)
ICQ-WIM: patch not to forcibly remove deleted contacts from our database
Diffstat (limited to 'protocols')
-rw-r--r--protocols/ICQ-WIM/src/poll.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/ICQ-WIM/src/poll.cpp b/protocols/ICQ-WIM/src/poll.cpp
index d6ab5ae19d..738600bf27 100644
--- a/protocols/ICQ-WIM/src/poll.cpp
+++ b/protocols/ICQ-WIM/src/poll.cpp
@@ -71,7 +71,7 @@ void CIcqProto::ProcessBuddyList(const JSONNode &ev)
Menu_ShowItem(m_hUploadGroups, true);
for (auto &it : m_arCache)
- if (!it->m_bInList)
+ if (!it->m_bInList && getMStringW(it->m_hContact, "Nick") != "[deleted]")
Contact_RemoveFromList(it->m_hContact);
RetrieveUserInfo();