Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
jami-libclient
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
savoirfairelinux
jami-libclient
Commits
c82d59b8
Commit
c82d59b8
authored
4 years ago
by
Sébastien Blin
Browse files
Options
Downloads
Patches
Plain Diff
newcallmodel: setActiveParticipant should pass the URI to the daemon
Change-Id: I3f069db40daaec9d3b236a0fcdd740aaa7ae2164
parent
e3e22214
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/api/newcallmodel.h
+1
-1
1 addition, 1 deletion
src/api/newcallmodel.h
src/newcallmodel.cpp
+1
-13
1 addition, 13 deletions
src/newcallmodel.cpp
with
2 additions
and
14 deletions
src/api/newcallmodel.h
+
1
−
1
View file @
c82d59b8
...
...
@@ -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
);
...
...
This diff is collapsed.
Click to expand it.
src/newcallmodel.cpp
+
1
−
13
View file @
c82d59b8
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment