mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-27 12:05:22 +00:00
Update message timesamps on resume.
Fixes #2519. Closes #2593 // FREEBIE
This commit is contained in:
parent
7ce7ec56eb
commit
ce22e54359
@ -81,6 +81,15 @@ public class ConversationFragment extends ListFragment
|
||||
this.listener = (ConversationFragmentListener)activity;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onResume() {
|
||||
super.onResume();
|
||||
|
||||
if (getListAdapter() != null) {
|
||||
((ConversationAdapter) getListAdapter()).notifyDataSetChanged();
|
||||
}
|
||||
}
|
||||
|
||||
public void onNewIntent() {
|
||||
if (actionMode != null) {
|
||||
actionMode.finish();
|
||||
|
@ -109,6 +109,7 @@ public class ConversationListFragment extends ListFragment
|
||||
super.onResume();
|
||||
|
||||
initializeReminders();
|
||||
((ConversationListAdapter)getListAdapter()).notifyDataSetChanged();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
Reference in New Issue
Block a user