Selaa lähdekoodia

fix bug, where password is not saved to keychain

Armin Schrenk 3 vuotta sitten
vanhempi
commit
2f32ab1376

+ 1 - 0
src/main/java/org/cryptomator/ui/keyloading/KeyLoadingStrategy.java

@@ -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());