mirror of
https://github.com/cryptomator/cryptomator.git
synced 2026-08-18 13:16:02 +00:00
remove vaults that can no longer be read [ci skip]
This commit is contained in:
@@ -193,7 +193,11 @@ public class Vault implements Serializable, CryptoFileSystemDelegate {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public boolean isValidVaultDirectory() {
|
public boolean isValidVaultDirectory() {
|
||||||
return cryptoFileSystemFactory.isValidVaultStructure(getNioFileSystem());
|
try {
|
||||||
|
return cryptoFileSystemFactory.isValidVaultStructure(getNioFileSystem());
|
||||||
|
} catch (UncheckedIOException e) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public ObjectProperty<Boolean> unlockedProperty() {
|
public ObjectProperty<Boolean> unlockedProperty() {
|
||||||
|
|||||||
Reference in New Issue
Block a user