diff options
author | George Hazan <ghazan@miranda.im> | 2020-12-23 21:03:01 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2020-12-23 21:03:01 +0300 |
commit | ed4141e5d48402b8b617e6ae360ae41464723b0c (patch) | |
tree | 2a2974512bef913df3ddbf619f0f881967997af6 /protocols/SkypeWeb/src/skype_chatrooms.cpp | |
parent | 16c0b34f73ad2c54defd9e2791bd8c15e27e35e0 (diff) |
SkypeWeb: history reader to use local time not to create time machine. Only fetching whole history shall use server side timestamps
Diffstat (limited to 'protocols/SkypeWeb/src/skype_chatrooms.cpp')
-rw-r--r-- | protocols/SkypeWeb/src/skype_chatrooms.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/SkypeWeb/src/skype_chatrooms.cpp b/protocols/SkypeWeb/src/skype_chatrooms.cpp index 080edd1abb..8cc0b39393 100644 --- a/protocols/SkypeWeb/src/skype_chatrooms.cpp +++ b/protocols/SkypeWeb/src/skype_chatrooms.cpp @@ -406,7 +406,7 @@ void CSkypeProto::OnGetChatInfo(NETLIBHTTPREQUEST *response, AsyncHttpRequest*) AddChatContact(si, username, role, true);
}
- PushRequest(new GetHistoryRequest(_T2A(si->ptszID), true, 0));
+ PushRequest(new GetHistoryRequest(T2Utf(si->ptszID), 100, 0, true));
}
wchar_t* CSkypeProto::GetChatContactNick(MCONTACT hContact, const wchar_t *id, const wchar_t *name)
|