summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2024-08-22 18:24:09 +0300
committerGeorge Hazan <george.hazan@gmail.com>2024-08-22 18:24:09 +0300
commit1acf5945ac73bf75a716551879e3d3e71217c03b (patch)
tree2e00384ff48ee4a142161860c2cb96be30a846eb
parentd8f3ec4f391579f56c942f8be3ee24bcd016984f (diff)
simplified check for #4580
-rw-r--r--protocols/SkypeWeb/src/skype_history_sync.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/SkypeWeb/src/skype_history_sync.cpp b/protocols/SkypeWeb/src/skype_history_sync.cpp
index 86616362e1..849c872028 100644
--- a/protocols/SkypeWeb/src/skype_history_sync.cpp
+++ b/protocols/SkypeWeb/src/skype_history_sync.cpp
@@ -116,7 +116,7 @@ void CSkypeProto::OnSyncConversations(MHttpResponse *response, AsyncHttpRequest*
case 19:
{
auto &props = it["threadProperties"];
- if (props["membercount"].as_int() && !props["lastleaveat"])
+ if (!props["lastleaveat"])
StartChatRoom(it["id"].as_mstring(), props["topic"].as_mstring(), props["version"].as_string().c_str());
}
__fallthrough;