Fix some rare crashes when restoring the app after termination

Also fixes an issue where the app shortcuts would not work for unencrypted vaults
This commit is contained in:
Alexander Bakker 2019-04-08 23:13:11 +02:00
parent 6d93b78f9a
commit 0563ac917a
5 changed files with 25 additions and 20 deletions

View file

@ -339,6 +339,11 @@ public class PreferencesFragment extends PreferenceFragmentCompat {
return true;
}
});
}
@Override
public void onActivityCreated (Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
updateEncryptionPreferences();
}