summaryrefslogtreecommitdiff
path: root/protocols/Tox/src/tox_events.cpp
diff options
context:
space:
mode:
authorAlexander Lantsev <aunsane@gmail.com>2014-08-17 17:26:18 +0000
committerAlexander Lantsev <aunsane@gmail.com>2014-08-17 17:26:18 +0000
commitbf23720e7c1d7de70d7d99167a42783f08ef8b17 (patch)
treeaa89f34bb46da1f7f66062d6f25a4ac2a103cb9b /protocols/Tox/src/tox_events.cpp
parenta9276f9db53affa2acbd8bc3f435285c1b838f87 (diff)
Tox:
- fixed tox id convertation - fixed tox profile load in first start - fixed polling thread git-svn-id: http://svn.miranda-ng.org/main/trunk@10215 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/src/tox_events.cpp')
-rw-r--r--protocols/Tox/src/tox_events.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/protocols/Tox/src/tox_events.cpp b/protocols/Tox/src/tox_events.cpp
index 10f3c29701..84193c059e 100644
--- a/protocols/Tox/src/tox_events.cpp
+++ b/protocols/Tox/src/tox_events.cpp
@@ -81,6 +81,8 @@ void CToxProto::OnFriendMessage(Tox *tox, const int friendnumber, const uint8_t
{
CToxProto *proto = (CToxProto*)arg;
+ proto->debugLogA("CToxProto::OnFriendMessage: friend number is %d", friendnumber);
+
std::vector<uint8_t> clientId(TOX_CLIENT_ID_SIZE);
tox_get_client_id(tox, friendnumber, &clientId[0]);
std::string toxId = proto->DataToHexString(clientId);