Skip to content

Commit bcd686b

Browse files
authored
Adhere to org.cryptomator:integrations-api 1.4.0
1 parent 0d50274 commit bcd686b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/org/purejava/integrations/keychain/KeePassXCAccess.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,12 @@ public String unlock() {
5757
}
5858

5959
@Override
60-
public void storePassphrase(String vault, CharSequence password) throws KeychainAccessException {
61-
storePassphrase(vault, "Vault", password);
60+
public void storePassphrase(String vault, String displayName, CharSequence password) throws KeychainAccessException {
61+
storePassphrase(vault, "Vault", password, false);
6262
}
6363

6464
@Override
65-
public void storePassphrase(String vault, String name, CharSequence password) throws KeychainAccessException {
65+
public void storePassphrase(String vault, String name, CharSequence password, boolean requireOsAuthentication) throws KeychainAccessException {
6666
if (isLocked()) {
6767
LOG.info("Failed to store password. KeePassXC database is locked. Needs to be unlocked first.");
6868
return;

0 commit comments

Comments
 (0)