Fixed refreshing after sorting

This commit is contained in:
Agnieszka C
2021-11-23 15:47:11 +01:00
parent 792584be70
commit 910729b08d

View File

@ -562,10 +562,12 @@ class MainActivity : SimpleActivity(), RefreshContactsListener {
} }
if (refreshTabsMask and TAB_CONTACTS != 0) { if (refreshTabsMask and TAB_CONTACTS != 0) {
contacts_fragment?.skipHashComparing = true
contacts_fragment?.refreshContacts(contacts) contacts_fragment?.refreshContacts(contacts)
} }
if (refreshTabsMask and TAB_FAVORITES != 0) { if (refreshTabsMask and TAB_FAVORITES != 0) {
favorites_fragment?.skipHashComparing = true
favorites_fragment?.refreshContacts(contacts) favorites_fragment?.refreshContacts(contacts)
} }