Fixed toggling favorite flag on contact not adding/removing it from favorites list

This commit is contained in:
Sylvain Berfini 2025-10-31 14:37:00 +01:00
parent 28cee7f539
commit a3f86fbac0
2 changed files with 6 additions and 1 deletions

View file

@ -105,6 +105,10 @@ class ContactAvatarModel
return false
}
if (isFavourite.value != other.isFavourite.value) {
return false
}
return true
}

View file

@ -137,7 +137,8 @@ class ContactsListViewModel
applyFilter(
currentFilter,
domainFilter
domainFilter,
true
)
}