Unsubscribe from typing observers when forwarding messages.
This commit is contained in:
parent
a81cc685b2
commit
4b88f7b845
1 changed files with 12 additions and 1 deletions
|
@ -176,6 +176,12 @@ public class ConversationFragment extends Fragment
|
|||
this.listener = (ConversationFragmentListener)activity;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onStart() {
|
||||
super.onStart();
|
||||
initializeTypingObserver();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onResume() {
|
||||
super.onResume();
|
||||
|
@ -185,6 +191,12 @@ public class ConversationFragment extends Fragment
|
|||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onStop() {
|
||||
super.onStop();
|
||||
ApplicationContext.getInstance(requireContext()).getTypingStatusRepository().getTypists(threadId).removeObservers(this);
|
||||
}
|
||||
|
||||
public void onNewIntent() {
|
||||
if (actionMode != null) {
|
||||
actionMode.finish();
|
||||
|
@ -227,7 +239,6 @@ public class ConversationFragment extends Fragment
|
|||
|
||||
OnScrollListener scrollListener = new ConversationScrollListener(getActivity());
|
||||
list.addOnScrollListener(scrollListener);
|
||||
initializeTypingObserver();
|
||||
}
|
||||
|
||||
private void initializeListAdapter() {
|
||||
|
|
Loading…
Add table
Reference in a new issue