mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 11:28:07 +00:00
add non admin participant in participant list (fix #LINQT-1925)
This commit is contained in:
parent
e3aebd3c00
commit
6ecf1f394e
1 changed files with 1 additions and 1 deletions
|
|
@ -138,7 +138,7 @@ bool ParticipantProxy::SortFilterList::filterAcceptsRow(int sourceRow, const QMo
|
|||
if (mShowMe) return true;
|
||||
else {
|
||||
auto participant = qobject_cast<ParticipantList *>(sourceModel())->getAt<ParticipantCore>(sourceRow);
|
||||
return !participant->isMe();
|
||||
return participant != nullptr;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue