Fix issue with conversation list times not updating.

Just started calling notifyDataSetChanged() in onResume() to provide
some sort of time update regularity.
fork-5.53.8
Greyson Parrelli 2020-06-21 12:20:18 -04:00
rodzic c3e528ad4b
commit 68f718a210
1 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -257,6 +257,10 @@ public class ConversationListFragment extends MainFragment implements ActionMode
list.removeItemDecoration(searchAdapterDecoration);
setAdapter(defaultAdapter);
}
if (activeAdapter != null) {
activeAdapter.notifyDataSetChanged();
}
}
@Override