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