mirror of
https://github.com/oxen-io/session-android.git
synced 2025-08-26 14:27:34 +00:00
Update message timesamps on resume.
Fixes #2519. Closes #2593 // FREEBIE
This commit is contained in:

committed by
Moxie Marlinspike

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
|
||||
|
Reference in New Issue
Block a user