diff options
| author | George Hazan <george.hazan@gmail.com> | 2025-06-23 13:56:45 +0300 |
|---|---|---|
| committer | George Hazan <george.hazan@gmail.com> | 2025-06-23 13:56:45 +0300 |
| commit | 7998a5f620a55f065ae74942f7d968cfe24af27b (patch) | |
| tree | 94744d0fe9d17b47c8c0a38515e5b969c12f2c60 /protocols | |
| parent | 40eb6363bb4e66bbd3bbc1e4191baaa46e1c21c0 (diff) | |
Teams: fix for fetching conversations
Diffstat (limited to 'protocols')
| -rw-r--r-- | protocols/Teams/src/teams_history.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Teams/src/teams_history.cpp b/protocols/Teams/src/teams_history.cpp index 29d72f65dd..825e807e92 100644 --- a/protocols/Teams/src/teams_history.cpp +++ b/protocols/Teams/src/teams_history.cpp @@ -86,7 +86,7 @@ void CTeamsProto::OnSyncConversations(MHttpResponse *response, AsyncHttpRequest void CTeamsProto::RefreshConversations() { auto *pReq = new AsyncHttpRequest(REQUEST_GET, HOST_CHATS, "/users/ME/conversations", &CTeamsProto::OnSyncConversations); - pReq << INT64_PARAM("startTime", getLastTime(0)) << INT_PARAM("pageSize", 100) + pReq << INT_PARAM("startTime", 0) << INT_PARAM("pageSize", 100) << CHAR_PARAM("view", "msnp24Equivalent") << CHAR_PARAM("targetType", "Passport|Skype|Lync|Thread|PSTN|Agent"); PushRequest(pReq); |
