mirror of
https://github.com/oxen-io/session-android.git
synced 2025-02-18 22:58:26 +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;
|
this.listener = (ConversationFragmentListener)activity;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onResume() {
|
||||||
|
super.onResume();
|
||||||
|
|
||||||
|
if (getListAdapter() != null) {
|
||||||
|
((ConversationAdapter) getListAdapter()).notifyDataSetChanged();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public void onNewIntent() {
|
public void onNewIntent() {
|
||||||
if (actionMode != null) {
|
if (actionMode != null) {
|
||||||
actionMode.finish();
|
actionMode.finish();
|
||||||
|
@ -109,6 +109,7 @@ public class ConversationListFragment extends ListFragment
|
|||||||
super.onResume();
|
super.onResume();
|
||||||
|
|
||||||
initializeReminders();
|
initializeReminders();
|
||||||
|
((ConversationListAdapter)getListAdapter()).notifyDataSetChanged();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
x
Reference in New Issue
Block a user