add non admin participant in participant list (fix #LINQT-1925)

This commit is contained in:
Gaelle Braud 2025-09-02 11:29:00 +02:00
parent e3aebd3c00
commit 6ecf1f394e

View file

@ -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;
}
}