mirror of https://github.com/M66B/FairEmail.git
Small improvement
This commit is contained in:
parent
91162161ad
commit
2bcf75c10d
|
@ -509,11 +509,11 @@ public class FragmentOptionsEncryption extends FragmentBase
|
|||
public void onDestroyView() {
|
||||
PreferenceManager.getDefaultSharedPreferences(getContext()).unregisterOnSharedPreferenceChangeListener(this);
|
||||
|
||||
if (pgpService != null && pgpService.isBound()) {
|
||||
if (pgpService != null) {
|
||||
Log.i("PGP unbinding");
|
||||
pgpService.unbindFromService();
|
||||
pgpService = null;
|
||||
}
|
||||
pgpService = null;
|
||||
|
||||
super.onDestroyView();
|
||||
}
|
||||
|
@ -641,8 +641,10 @@ public class FragmentOptionsEncryption extends FragmentBase
|
|||
private void testOpenPgp(String pkg) {
|
||||
Log.i("Testing OpenPGP pkg=" + pkg);
|
||||
try {
|
||||
if (pgpService != null && pgpService.isBound())
|
||||
if (pgpService != null) {
|
||||
pgpService.unbindFromService();
|
||||
pgpService = null;
|
||||
}
|
||||
|
||||
tvOpenPgpStatus.setText("Connecting");
|
||||
pgpService = new OpenPgpServiceConnection(getContext(), pkg, this);
|
||||
|
|
Loading…
Reference in New Issue