Update message timesamps on resume.

Fixes #2519.
Closes #2593

// FREEBIE
This commit is contained in:
Rhodey Orbits 2015-03-05 15:51:23 -08:00 committed by Moxie Marlinspike
parent 7ce7ec56eb
commit ce22e54359
2 changed files with 10 additions and 0 deletions

View File

@ -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();

View File

@ -109,6 +109,7 @@ public class ConversationListFragment extends ListFragment
super.onResume();
initializeReminders();
((ConversationListAdapter)getListAdapter()).notifyDataSetChanged();
}
@Override