mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-29 17:59:21 +00:00
fix(src/components/conference/ConferenceHelperModel): fix accepts row condition
This commit is contained in:
parent
7b2992fda7
commit
16f90568bd
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue