diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-05-15 22:10:03 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-05-15 22:10:03 +0000 |
commit | 46451b15a726feaf39de601d90a065c74cf4bde0 (patch) | |
tree | 21f5f6a9a96d44bc08c392ec06bfc55db57aa1e0 /protocols/Tox | |
parent | ec16b101e315312ce413f4bb9f7a5de5e993fcaf (diff) |
Tox: fixed outgoing transfer visualization
git-svn-id: http://svn.miranda-ng.org/main/trunk@13611 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox')
-rw-r--r-- | protocols/Tox/src/tox_transfer.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/protocols/Tox/src/tox_transfer.cpp b/protocols/Tox/src/tox_transfer.cpp index 1c56c24081..cc215c173e 100644 --- a/protocols/Tox/src/tox_transfer.cpp +++ b/protocols/Tox/src/tox_transfer.cpp @@ -277,6 +277,7 @@ void CToxProto::OnFileSendData(Tox*, uint32_t friendNumber, uint32_t fileNumber, }
transfer->pfts.totalProgress = transfer->pfts.currentFileProgress += length;
+ proto->ProtoBroadcastAck(transfer->pfts.hContact, ACKTYPE_FILE, ACKRESULT_DATA, (HANDLE)transfer, (LPARAM)&transfer->pfts);
mir_free(data);
}
|