diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-01-07 11:42:07 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-01-07 11:42:07 +0000 |
commit | b37e0bd58a5969b42f6feaf073afcdfe43330b41 (patch) | |
tree | 03b98749a6bf16fa48d4955e54da14548e6105f9 /protocols/Tox/src/tox_account.cpp | |
parent | 29c30826e448ba305fc7b1a7370043d09cb587f1 (diff) |
Tox:
- fix own status showing on contact's client
- some sync fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@11785 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/src/tox_account.cpp')
-rw-r--r-- | protocols/Tox/src/tox_account.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/protocols/Tox/src/tox_account.cpp b/protocols/Tox/src/tox_account.cpp index 9e74f07a17..bc9a984288 100644 --- a/protocols/Tox/src/tox_account.cpp +++ b/protocols/Tox/src/tox_account.cpp @@ -168,6 +168,7 @@ void CToxProto::PollingThread(void*) debugLogA("CToxProto::PollingThread: changing status from %i to %i", ID_STATUS_CONNECTING, m_iDesiredStatus);
m_iStatus = m_iDesiredStatus;
+ tox_set_user_status(tox, MirandaToToxStatus(m_iStatus));
ProtoBroadcastAck(NULL, ACKTYPE_STATUS, ACKRESULT_SUCCESS, (HANDLE)ID_STATUS_CONNECTING, m_iStatus);
}
else
|