Browse Source

Small improvements

main
M66B 6 years ago
parent
commit
fee57e5426
1 changed files with 7 additions and 1 deletions
  1. +7
    -1
      app/src/main/java/eu/faircode/email/FragmentMessage.java

+ 7
- 1
app/src/main/java/eu/faircode/email/FragmentMessage.java View File

@ -180,11 +180,11 @@ public class FragmentMessage extends FragmentEx {
@Override @Override
public void onDestroy() { public void onDestroy() {
super.onDestroy();
if (openPgpConnection != null) { if (openPgpConnection != null) {
openPgpConnection.unbindFromService(); openPgpConnection.unbindFromService();
openPgpConnection = null; openPgpConnection = null;
} }
super.onDestroy();
} }
@Override @Override
@ -389,6 +389,12 @@ public class FragmentMessage extends FragmentEx {
return view; return view;
} }
@Override
public void onDestroyView() {
adapter = null;
super.onDestroyView();
}
@Override @Override
public void onSaveInstanceState(Bundle outState) { public void onSaveInstanceState(Bundle outState) {
super.onSaveInstanceState(outState); super.onSaveInstanceState(outState);


Loading…
Cancel
Save