mirror of
https://github.com/oxen-io/session-android.git
synced 2025-06-09 21:28:34 +00:00
Fix issue with conversation list times not updating.
Just started calling notifyDataSetChanged() in onResume() to provide some sort of time update regularity.
This commit is contained in:
parent
c3e528ad4b
commit
68f718a210
@ -257,6 +257,10 @@ public class ConversationListFragment extends MainFragment implements ActionMode
|
|||||||
list.removeItemDecoration(searchAdapterDecoration);
|
list.removeItemDecoration(searchAdapterDecoration);
|
||||||
setAdapter(defaultAdapter);
|
setAdapter(defaultAdapter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (activeAdapter != null) {
|
||||||
|
activeAdapter.notifyDataSetChanged();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
x
Reference in New Issue
Block a user