Skip to content
Snippets Groups Projects
Commit f76fafc7 authored by Emmanuel Milou's avatar Emmanuel Milou
Browse files

IAX2 bug correction - on/off hold situation

Bug: With an IAX account, when you put someone on hold and then took him off hold, there was no outgoing audio from sflphone
Fix: We have to call audiolayer->startstream() to make the capture starts
parent e54db60d
No related branches found
No related tags found
No related merge requests found
......@@ -548,6 +548,7 @@ IAXVoIPLink::offhold(const CallID& id)
_mutexIAX.enterMutex();
iax_unquelch(call->getSession());
_mutexIAX.leaveMutex();
audiolayer->startStream();
call->setState(Call::Active);
return true;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment