create a copy of contact items at updating them

This commit is contained in:
tibbi
2018-04-26 21:32:16 +02:00
parent 456a0ce17c
commit a3f3cc5fbe
3 changed files with 3 additions and 3 deletions

View File

@ -117,7 +117,7 @@ class ContactsAdapter(activity: SimpleActivity, var contactItems: ArrayList<Cont
fun updateItems(newItems: ArrayList<Contact>, highlightText: String = "") {
if (newItems.hashCode() != contactItems.hashCode()) {
contactItems = newItems
contactItems = newItems.clone() as ArrayList<Contact>
textToHighlight = highlightText
notifyDataSetChanged()
finishActMode()