diff options
author | George Hazan <george.hazan@gmail.com> | 2025-06-19 21:25:30 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2025-06-19 21:25:35 +0300 |
commit | b1049e5c56081071b604d1298dff51362062840c (patch) | |
tree | bbedd1549aa301b778d4fa7dacdf6498c4b7b251 /protocols/Teams/src | |
parent | ecae8cfa27189ebf9612b62a6a6a9204c84f642e (diff) |
Teams: it seems that "lastleaveat" presence doesn't mean that a chat is left...
Diffstat (limited to 'protocols/Teams/src')
-rw-r--r-- | protocols/Teams/src/teams_history.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Teams/src/teams_history.cpp b/protocols/Teams/src/teams_history.cpp index 94a5a0c0a6..5534b6c743 100644 --- a/protocols/Teams/src/teams_history.cpp +++ b/protocols/Teams/src/teams_history.cpp @@ -55,8 +55,8 @@ void CTeamsProto::OnSyncConversations(MHttpResponse *response, AsyncHttpRequest szChatType = szSkypename.Mid(idx + 1); if (szType == "Chat" || szChatType == "thread.skype") { - if (!props["lastleaveat"]) - StartChatRoom(it["id"].as_mstring(), props["topic"].as_mstring(), props["version"].as_string().c_str()); + // if (!props["lastleaveat"]) + StartChatRoom(it["id"].as_mstring(), props["topic"].as_mstring(), props["version"].as_string().c_str()); } else if (szType == "OneToOneChat") { hContact = FindContact(it["properties"]["addedBy"].as_string().c_str()); |