diff options
author | George Hazan <george.hazan@gmail.com> | 2024-11-09 19:46:49 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-11-09 19:46:49 +0300 |
commit | 5d7141972f7edc5f0818ea2040109f555e65fcdb (patch) | |
tree | 245b19c3090ee83ac12e401682415ad9a51b95d7 /protocols | |
parent | 9a4428ce1a6e76ed25e3e30d85cf119e7b437891 (diff) |
fixes #4768 (TabSRMM: глюки по следам галки автооткрытия для групчатов)
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/SkypeWeb/src/skype_history_sync.cpp | 2 |
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 dbcb6c780b..36e1763fdd 100644 --- a/protocols/SkypeWeb/src/skype_history_sync.cpp +++ b/protocols/SkypeWeb/src/skype_history_sync.cpp @@ -133,7 +133,7 @@ void CSkypeProto::OnSyncConversations(MHttpResponse *response, AsyncHttpRequest* if (hContact != NULL) {
auto lastMsgTime = getLastTime(hContact);
if (lastMsgTime && lastMsgTime < id && m_bAutoHistorySync)
- PushRequest(new GetHistoryRequest(hContact, szSkypename, 100, lastMsgTime, false));
+ PushRequest(new GetHistoryRequest(hContact, szSkypename, 100, lastMsgTime, true));
}
}
}
|