diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2015-04-25 14:27:41 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2015-04-25 14:27:41 +0000 |
commit | b2458d269f0457efa88707ba72065d4161856162 (patch) | |
tree | e8fa396230cd39885837e08ec912daac3b5e6d50 /protocols/SkypeWeb/src/skype_history_sync.cpp | |
parent | fe3664a0c83e320017468158bde7d7899a83f755 (diff) |
SkypeWeb: More chats fixes.
git-svn-id: http://svn.miranda-ng.org/main/trunk@13139 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeWeb/src/skype_history_sync.cpp')
-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 4825c70507..ff1b3c11d6 100644 --- a/protocols/SkypeWeb/src/skype_history_sync.cpp +++ b/protocols/SkypeWeb/src/skype_history_sync.cpp @@ -38,7 +38,7 @@ void CSkypeProto::OnGetServerHistory(const NETLIBHTTPREQUEST *response) if (totalCount >= 99 || json_size(conversations) >= 99)
PushRequest(new GetHistoryOnUrlRequest(syncState, RegToken), &CSkypeProto::OnGetServerHistory);
- for (size_t i = 0; i < json_size(conversations); i++)
+ for (int i = json_size(conversations); i >= 0; i--)
{
JSONNODE *message = json_at(conversations, i);
|