diff options
-rw-r--r-- | protocols/SkypeWeb/src/skype_chatrooms.cpp | 2 |
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());
}
}
|