summaryrefslogtreecommitdiff
path: root/protocols/Tox/src/tox_transfer.cpp
diff options
context:
space:
mode:
authorAlexander Lantsev <aunsane@gmail.com>2015-02-04 19:24:57 +0000
committerAlexander Lantsev <aunsane@gmail.com>2015-02-04 19:24:57 +0000
commitdfe76cf65e6f20d5f9c92982a241ffecf6bb3405 (patch)
tree6cd07d1f07afc71ddbac99a2194fec6087310cf9 /protocols/Tox/src/tox_transfer.cpp
parent2d0cbc078494bbf8f70e68fe629710bbaa30b2e8 (diff)
Tox:
- added delay for resending chunk of file - updated tox core - version bump git-svn-id: http://svn.miranda-ng.org/main/trunk@12003 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/src/tox_transfer.cpp')
-rw-r--r--protocols/Tox/src/tox_transfer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Tox/src/tox_transfer.cpp b/protocols/Tox/src/tox_transfer.cpp
index 65a00899ab..a8643d16ea 100644
--- a/protocols/Tox/src/tox_transfer.cpp
+++ b/protocols/Tox/src/tox_transfer.cpp
@@ -232,7 +232,7 @@ void CToxProto::SendFileAsync(void *arg)
if (tox_file_send_data(tox, transfer->friendNumber, transfer->fileNumber, data, dataSize) == TOX_ERROR)
{
locker.unlock();
- //Sleep(100);
+ Sleep(100);
continue;
}