From b2458d269f0457efa88707ba72065d4161856162 Mon Sep 17 00:00:00 2001 From: MikalaiR Date: Sat, 25 Apr 2015 14:27:41 +0000 Subject: SkypeWeb: More chats fixes. git-svn-id: http://svn.miranda-ng.org/main/trunk@13139 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/SkypeWeb/src/skype_history_sync.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'protocols/SkypeWeb/src/skype_history_sync.cpp') 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); -- cgit v1.2.3