summaryrefslogtreecommitdiff
path: root/protocols/SkypeWeb
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2020-12-22 17:42:09 +0300
committerGeorge Hazan <ghazan@miranda.im>2020-12-22 17:42:09 +0300
commit661de98eb4c505a1615199ea6ecd7f6e44cff3f7 (patch)
tree14f1357e98a46bfd5d813016aa3428c20fd2c927 /protocols/SkypeWeb
parent70eb950138df0d3574695cfe7939d4c9b4ea2b9e (diff)
we don't have to load killed group chats
Diffstat (limited to 'protocols/SkypeWeb')
-rw-r--r--protocols/SkypeWeb/src/skype_chatrooms.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/SkypeWeb/src/skype_chatrooms.cpp b/protocols/SkypeWeb/src/skype_chatrooms.cpp
index b00cd5e1f2..080edd1abb 100644
--- a/protocols/SkypeWeb/src/skype_chatrooms.cpp
+++ b/protocols/SkypeWeb/src/skype_chatrooms.cpp
@@ -69,7 +69,7 @@ void CSkypeProto::OnLoadChats(NETLIBHTTPREQUEST *response, AsyncHttpRequest*)
for (auto &it : conversations) {
auto &props = it["threadProperties"];
- if (it["lastMessage"] && props["members"])
+ if (it["lastMessage"] && props["members"] && !props["lastleaveat"])
StartChatRoom(it["id"].as_mstring(), props["topic"].as_mstring());
}
}