mirror of
https://github.com/cryptomator/cryptomator.git
synced 2026-04-19 17:16:53 -04: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() {
|
||||
return cryptoFileSystemFactory.isValidVaultStructure(getNioFileSystem());
|
||||
try {
|
||||
return cryptoFileSystemFactory.isValidVaultStructure(getNioFileSystem());
|
||||
} catch (UncheckedIOException e) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public ObjectProperty<Boolean> unlockedProperty() {
|
||||
|
||||
Reference in New Issue
Block a user