diff --git a/linphone-desktop/src/components/conference/ConferenceHelperModel.cpp b/linphone-desktop/src/components/conference/ConferenceHelperModel.cpp index 59d4ff876..2e5040f68 100644 --- a/linphone-desktop/src/components/conference/ConferenceHelperModel.cpp +++ b/linphone-desktop/src/components/conference/ConferenceHelperModel.cpp @@ -61,7 +61,7 @@ bool ConferenceHelperModel::filterAcceptsRow (int sourceRow, const QModelIndex & const QVariantMap &data = index.data().toMap(); const QString &sipAddress = data["sipAddress"].toString(); - return !mInConference.contains(sipAddress) || !mToAdd.contains(sipAddress); + return !mInConference.contains(sipAddress) && !mToAdd.contains(sipAddress); } // -----------------------------------------------------------------------------