diff --git a/Linphone/core/call-history/CallHistoryProxy.cpp b/Linphone/core/call-history/CallHistoryProxy.cpp index a180fd43..2712e4c7 100644 --- a/Linphone/core/call-history/CallHistoryProxy.cpp +++ b/Linphone/core/call-history/CallHistoryProxy.cpp @@ -59,8 +59,7 @@ bool CallHistoryProxy::SortFilterList::filterAcceptsRow(int sourceRow, const QMo QRegularExpression::CaseInsensitiveOption | QRegularExpression::UseUnicodePropertiesOption); auto callLog = getItemAtSource(sourceRow); - show = - callLog->mIsConference ? callLog->mDisplayName.contains(search) : callLog->mRemoteAddress.contains(search); + show = callLog->mDisplayName.contains(search) || callLog->mRemoteAddress.contains(search); } return show; }