Skip to content
Snippets Groups Projects
Commit eb0d7c18 authored by Alexandre Savard's avatar Alexandre Savard
Browse files

[#2391] Add debug when call state is not valid

parent 561ae956
Branches
Tags
No related merge requests found
...@@ -1241,6 +1241,9 @@ ManagerImpl::joinParticipant(const CallID& call_id1, const CallID& call_id2) ...@@ -1241,6 +1241,9 @@ ManagerImpl::joinParticipant(const CallID& call_id1, const CallID& call_id2)
_audiodriver->getMainBuffer()->unBindAll(call_id1); _audiodriver->getMainBuffer()->unBindAll(call_id1);
conf->bindParticipant(call_id1); conf->bindParticipant(call_id1);
} }
else{
_debug(" CAll State not recognized");
}
currentAccountId = getAccountFromCall (call_id2); currentAccountId = getAccountFromCall (call_id2);
call = getAccountLink (currentAccountId)->getCall (call_id2); call = getAccountLink (currentAccountId)->getCall (call_id2);
...@@ -1264,6 +1267,9 @@ ManagerImpl::joinParticipant(const CallID& call_id1, const CallID& call_id2) ...@@ -1264,6 +1267,9 @@ ManagerImpl::joinParticipant(const CallID& call_id1, const CallID& call_id2)
_audiodriver->getMainBuffer()->unBindAll(call_id2); _audiodriver->getMainBuffer()->unBindAll(call_id2);
conf->bindParticipant(call_id2); conf->bindParticipant(call_id2);
} }
else{
_debug(" CAll State not recognized");
}
// finally bind main participant to conference // finally bind main participant to conference
// addMainParticipant(default_conf); // addMainParticipant(default_conf);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment