Commit 16f90568 authored by Ronan Abhamon's avatar Ronan Abhamon

fix(src/components/conference/ConferenceHelperModel): fix accepts row condition

parent 7b2992fd
......@@ -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);
}
// -----------------------------------------------------------------------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment