Browse Source

Workaround for #1817

pull/1833/head
tux3 10 years ago
parent
commit
6d8bcbb9cd
No known key found for this signature in database
GPG Key ID: 7E086DD661263264
  1. 4
      src/core/coreav.cpp

4
src/core/coreav.cpp

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

Loading…
Cancel
Save