mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
Fixed toggling favorite flag on contact not adding/removing it from favorites list
This commit is contained in:
parent
28cee7f539
commit
a3f86fbac0
2 changed files with 6 additions and 1 deletions
|
|
@ -105,6 +105,10 @@ class ContactAvatarModel
|
|||
return false
|
||||
}
|
||||
|
||||
if (isFavourite.value != other.isFavourite.value) {
|
||||
return false
|
||||
}
|
||||
|
||||
return true
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -137,7 +137,8 @@ class ContactsListViewModel
|
|||
|
||||
applyFilter(
|
||||
currentFilter,
|
||||
domainFilter
|
||||
domainFilter,
|
||||
true
|
||||
)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue