diff options
author | ElzorFox <elzorfox@ya.ru> | 2025-06-29 16:04:02 +0500 |
---|---|---|
committer | ElzorFox <elzorfox@ya.ru> | 2025-06-29 16:04:02 +0500 |
commit | 1a43d96c9863bac5f6502cb92d26faaa352ace56 (patch) | |
tree | d3bcbf82e488ac42ada630c3f8e876d446a391a2 /protocols | |
parent | 603e8738b37583473102f0964c826678d790d764 (diff) |
VKontakte: more 'error 9' fix
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/VKontakte/src/vk_history.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/VKontakte/src/vk_history.cpp b/protocols/VKontakte/src/vk_history.cpp index 23cbc6f821..63774a9423 100644 --- a/protocols/VKontakte/src/vk_history.cpp +++ b/protocols/VKontakte/src/vk_history.cpp @@ -145,7 +145,7 @@ void CVkProto::GetServerHistory(MCONTACT hContact, int iOffset, int iCount, time if (VK_INVALID_USER == iUserId || iUserId == VK_FEED_USER)
return;
- Push(new AsyncHttpRequest(this, REQUEST_GET, "/method/execute.GetServerConversationHistory", true, &CVkProto::OnReceiveHistoryMessages, AsyncHttpRequest::rpLow)
+ Push(new AsyncHttpRequest(this, REQUEST_GET, "/method/execute.GetServerConversationHistory", true, &CVkProto::OnReceiveHistoryMessages, AsyncHttpRequest::rpLowCListEvents)
<< INT_PARAM("reqcount", iCount)
<< INT_PARAM("offset", iOffset)
<< INT_PARAM("userid", iUserId)
|