Skip to content

Commit

Permalink
Adhere to org.cryptomator:integrations-api 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
purejava authored Sep 28, 2024
1 parent 0d50274 commit bcd686b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ public String unlock() {
}

@Override
public void storePassphrase(String vault, CharSequence password) throws KeychainAccessException {
storePassphrase(vault, "Vault", password);
public void storePassphrase(String vault, String displayName, CharSequence password) throws KeychainAccessException {
storePassphrase(vault, "Vault", password, false);
}

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

0 comments on commit bcd686b

Please sign in to comment.