From 6ecf1f394e29fcc670afdf844ba40168a8471561 Mon Sep 17 00:00:00 2001 From: Gaelle Braud Date: Tue, 2 Sep 2025 11:29:00 +0200 Subject: [PATCH] add non admin participant in participant list (fix #LINQT-1925) --- Linphone/core/participant/ParticipantProxy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Linphone/core/participant/ParticipantProxy.cpp b/Linphone/core/participant/ParticipantProxy.cpp index 48629a232..e4f83cda5 100644 --- a/Linphone/core/participant/ParticipantProxy.cpp +++ b/Linphone/core/participant/ParticipantProxy.cpp @@ -138,7 +138,7 @@ bool ParticipantProxy::SortFilterList::filterAcceptsRow(int sourceRow, const QMo if (mShowMe) return true; else { auto participant = qobject_cast(sourceModel())->getAt(sourceRow); - return !participant->isMe(); + return participant != nullptr; } }