diff options
author | ElzorFox <elzorfox@ya.ru> | 2023-12-01 12:12:28 +0500 |
---|---|---|
committer | ElzorFox <elzorfox@ya.ru> | 2023-12-01 12:13:12 +0500 |
commit | 1d03e3af5e2b5f1ab80e250b11323a2c27fc1bcf (patch) | |
tree | eccfba3be1e0cd53b1dc7e73700789b042730b98 /protocols/VKontakte/src/vk_files.cpp | |
parent | ada650c7701897a422a283e3a6c665b5d8a5e330 (diff) |
VKontakte:
update VK API version to 5.199
version bump
Diffstat (limited to 'protocols/VKontakte/src/vk_files.cpp')
-rw-r--r-- | protocols/VKontakte/src/vk_files.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/VKontakte/src/vk_files.cpp b/protocols/VKontakte/src/vk_files.cpp index c376c9ce59..5c83372d51 100644 --- a/protocols/VKontakte/src/vk_files.cpp +++ b/protocols/VKontakte/src/vk_files.cpp @@ -383,7 +383,7 @@ void CVkProto::OnReciveUploadFile(NETLIBHTTPREQUEST *reply, AsyncHttpRequest *pR }
pMsgReq = new AsyncHttpRequest(this, REQUEST_POST, "/method/messages.send.json", true, &CVkProto::OnSendMessage, AsyncHttpRequest::rpHigh);
- pMsgReq << INT_PARAM("user_id", iUserId);
+ pMsgReq << INT_PARAM("peer_id", iUserId);
pMsgReq->pUserInfo = new CVkSendMsgParam(fup->hContact, fup);
}
|