1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

Fix wrong assert

This commit is contained in:
tux3 2015-06-06 22:11:54 +02:00
parent 89e9b18cf3
commit 7513725a3d
No known key found for this signature in database
GPG Key ID: 7E086DD661263264

View File

@ -233,7 +233,7 @@ void Core::cancelCall(int32_t callId, uint32_t friendId)
void Core::cleanupCall(int32_t callId)
{
assert(!calls[callId].active);
assert(calls[callId].active);
qDebug() << QString("cleaning up call %1").arg(callId);
calls[callId].active = false;
disconnect(calls[callId].sendAudioTimer,0,0,0);