diff options
author | George Hazan <george.hazan@gmail.com> | 2024-09-08 13:36:04 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-09-08 13:36:09 +0300 |
commit | fc9fe9ec3a778f0c569842cad6cf9c4b752e9e9e (patch) | |
tree | 41b2c697f351d2d0c233c9f30c2d3625a3cc939e /protocols | |
parent | 6663b7ce90df0de2241e99598f62aebb4aff4fd1 (diff) |
fixes #4628 (Skypeweb: сообщения, написанные за время оффлайна миранды, прилетают с текущим временем, а не с временем их написания)
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 146b925ba2..11c731ec23 100644 --- a/protocols/SkypeWeb/src/skype_history_sync.cpp +++ b/protocols/SkypeWeb/src/skype_history_sync.cpp @@ -129,7 +129,7 @@ void CSkypeProto::OnSyncConversations(MHttpResponse *response, AsyncHttpRequest* if (hContact != NULL) {
auto lastMsgTime = getLastTime(hContact);
if (lastMsgTime && lastMsgTime < id && bAutoHistorySync)
- PushRequest(new GetHistoryRequest(hContact, szSkypename, 100, lastMsgTime, true));
+ PushRequest(new GetHistoryRequest(hContact, szSkypename, 100, lastMsgTime, false));
}
}
}
|