diff options
author | George Hazan <ghazan@miranda.im> | 2021-08-30 11:56:23 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2021-08-30 11:56:23 +0300 |
commit | a06f77c54ea9c5600ffbcf996cd0ce27b6326128 (patch) | |
tree | a2b26601540d6bafd78475fe88fe2d70d8eeade3 /protocols/SkypeWeb/src/requests | |
parent | dc4d1cd2f21b537fcc12522be5b93f80bbbf3b60 (diff) |
fixes #2588 (SkypeWeb: server history loading loads only the last 100 messages)
Diffstat (limited to 'protocols/SkypeWeb/src/requests')
-rw-r--r-- | protocols/SkypeWeb/src/requests/history.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/SkypeWeb/src/requests/history.h b/protocols/SkypeWeb/src/requests/history.h index 008cd2cd2e..d6a6726dc2 100644 --- a/protocols/SkypeWeb/src/requests/history.h +++ b/protocols/SkypeWeb/src/requests/history.h @@ -35,7 +35,7 @@ struct SyncHistoryFirstRequest : public AsyncHttpRequest struct GetHistoryRequest : public AsyncHttpRequest
{
- GetHistoryRequest(const char *username, int pageSize, LONGLONG timestamp, bool bOperative) :
+ GetHistoryRequest(const char *username, int pageSize, DWORD timestamp, bool bOperative) :
AsyncHttpRequest(REQUEST_GET, HOST_DEFAULT, 0, &CSkypeProto::OnGetServerHistory)
{
m_szUrl.AppendFormat("/users/ME/conversations/%s/messages", mir_urlEncode(username).c_str());
@@ -54,4 +54,4 @@ struct GetHistoryRequest : public AsyncHttpRequest }
};
-#endif //_SKYPE_REQUEST_HISTORY_H_
\ No newline at end of file +#endif //_SKYPE_REQUEST_HISTORY_H_
|