diff options
author | George Hazan <ghazan@miranda.im> | 2022-09-16 13:27:28 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2022-09-16 13:27:28 +0300 |
commit | e608c114ed6735ff097db948688ea320d2d38f0c (patch) | |
tree | 15b83a323219205d25006bb66177ee3fd4d41039 /protocols/WhatsAppWeb/src/avatars.cpp | |
parent | b3dcfac0936aa764ecf0b98b8bfd0112d0c05fe5 (diff) |
WhatsApp: new socket version that is able to send handshake message
Diffstat (limited to 'protocols/WhatsAppWeb/src/avatars.cpp')
-rw-r--r-- | protocols/WhatsAppWeb/src/avatars.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/WhatsAppWeb/src/avatars.cpp b/protocols/WhatsAppWeb/src/avatars.cpp index 7b71f14100..5649067330 100644 --- a/protocols/WhatsAppWeb/src/avatars.cpp +++ b/protocols/WhatsAppWeb/src/avatars.cpp @@ -55,7 +55,7 @@ INT_PTR WhatsAppProto::GetAvatarInfo(WPARAM wParam, LPARAM lParam) DWORD dwTag = getDword(pai->hContact, DBKEY_AVATAR_TAG, -1); if (dwTag == -1 || (wParam & GAIF_FORCE) != 0) if (pai->hContact != NULL && isOnline()) { - WSSend(CMStringA(FORMAT, "[\"query\",\"ProfilePicThumb\",\"%s\"]", id.get()), &WhatsAppProto::OnGetAvatarInfo, (void*)pai->hContact); + // WSSend(CMStringA(FORMAT, "[\"query\",\"ProfilePicThumb\",\"%s\"]", id.get()), &WhatsAppProto::OnGetAvatarInfo, (void*)pai->hContact); return GAIR_WAITFOR; } |