Skip to content
Snippets Groups Projects
Commit c82d59b8 authored by Sébastien Blin's avatar Sébastien Blin
Browse files

newcallmodel: setActiveParticipant should pass the URI to the daemon

Change-Id: I3f069db40daaec9d3b236a0fcdd740aaa7ae2164
parent e3e22214
No related branches found
No related tags found
No related merge requests found
......@@ -234,7 +234,7 @@ public:
/**
* Set the shown participant
* @param confId The call to change
* @param participant Use contact URI (or callId)
* @param participant Use contact URI
*/
void setActiveParticipant(const QString& confId, const QString& participant);
......
......@@ -722,19 +722,7 @@ NewCallModel::setConferenceLayout(const QString& confId, const call::Layout& lay
void
NewCallModel::setActiveParticipant(const QString& confId, const QString& participant)
{
QString callId = participant; // participant can be directly the callId
QStringList callList = CallManager::instance().getParticipantList(confId);
for (const auto& call : callList) {
// Search related call for participant given
MapStringString details = CallManager::instance().getCallDetails(call);
auto endId = details["PEER_NUMBER"].indexOf("@");
auto peerUri = details["PEER_NUMBER"].left(endId);
if (peerUri == participant) {
callId = call;
}
}
CallManager::instance().setActiveParticipant(confId, callId);
CallManager::instance().setActiveParticipant(confId, participant);
}
void
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment