fix bug, where password is not saved to keychain

This commit is contained in:
Armin Schrenk
2021-08-30 13:19:40 +02:00
parent aef1bf821a
commit 2f32ab1376

View File

@@ -77,6 +77,7 @@ public interface KeyLoadingStrategy extends MasterkeyLoader {
boolean success = false;
try {
user.use(this);
success = true;
} catch (MasterkeyLoadingFailedException e) {
if (recoverFromException(e)) {
LOG.info("Unlock attempt threw {}. Reattempting...", e.getClass().getSimpleName());